-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Dec 09, 2025 at 09:44 AM
-- Server version: 11.4.8-MariaDB-cll-lve-log
-- PHP Version: 8.3.27

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `mrarqpph_secureswipesolutions`
--

-- --------------------------------------------------------

--
-- Table structure for table `wps_commentmeta`
--

CREATE TABLE `wps_commentmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `comment_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wps_comments`
--

CREATE TABLE `wps_comments` (
  `comment_ID` bigint(20) UNSIGNED NOT NULL,
  `comment_post_ID` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wps_comments`
--

INSERT INTO `wps_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'A WordPress Commenter', 'wapuu@wordpress.example', 'https://wordpress.org/', '', '2025-11-15 12:28:07', '2025-11-15 12:28:07', 'Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com/\">Gravatar</a>.', 0, '1', '', 'comment', 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wps_e_events`
--

CREATE TABLE `wps_e_events` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `event_data` text DEFAULT NULL,
  `created_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wps_e_notes`
--

CREATE TABLE `wps_e_notes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `route_url` text DEFAULT NULL COMMENT 'Clean url where the note was created.',
  `route_title` varchar(255) DEFAULT NULL,
  `route_post_id` bigint(20) UNSIGNED DEFAULT NULL COMMENT 'The post id of the route that the note was created on.',
  `post_id` bigint(20) UNSIGNED DEFAULT NULL,
  `element_id` varchar(60) DEFAULT NULL COMMENT 'The Elementor element ID the note is attached to.',
  `parent_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `author_id` bigint(20) UNSIGNED DEFAULT NULL,
  `author_display_name` varchar(250) DEFAULT NULL COMMENT 'Save the author name when the author was deleted.',
  `status` varchar(20) NOT NULL DEFAULT 'publish',
  `position` text DEFAULT NULL COMMENT 'A JSON string that represents the position of the note inside the element in percentages. e.g. {x:10, y:15}',
  `content` longtext DEFAULT NULL,
  `is_resolved` tinyint(1) NOT NULL DEFAULT 0,
  `is_public` tinyint(1) NOT NULL DEFAULT 1,
  `last_activity_at` datetime DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wps_e_notes_users_relations`
--

CREATE TABLE `wps_e_notes_users_relations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `type` varchar(60) NOT NULL COMMENT 'The relation type between user and note (e.g mention, watch, read).',
  `note_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wps_e_submissions`
--

CREATE TABLE `wps_e_submissions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `type` varchar(60) DEFAULT NULL,
  `hash_id` varchar(60) NOT NULL,
  `main_meta_id` bigint(20) UNSIGNED NOT NULL COMMENT 'Id of main field. to represent the main meta field',
  `post_id` bigint(20) UNSIGNED NOT NULL,
  `referer` varchar(500) NOT NULL,
  `referer_title` varchar(300) DEFAULT NULL,
  `element_id` varchar(20) NOT NULL,
  `form_name` varchar(60) NOT NULL,
  `campaign_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `user_ip` varchar(46) NOT NULL,
  `user_agent` text NOT NULL,
  `actions_count` int(11) DEFAULT 0,
  `actions_succeeded_count` int(11) DEFAULT 0,
  `status` varchar(20) NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `meta` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wps_e_submissions`
--

INSERT INTO `wps_e_submissions` (`id`, `type`, `hash_id`, `main_meta_id`, `post_id`, `referer`, `referer_title`, `element_id`, `form_name`, `campaign_id`, `user_id`, `user_ip`, `user_agent`, `actions_count`, `actions_succeeded_count`, `status`, `is_read`, `meta`, `created_at_gmt`, `updated_at_gmt`, `created_at`, `updated_at`) VALUES
(1, 'submission', '186eb5f1-eee5-457b-81cd-628e0df3189b', 3, 29, 'https://mrarif.me/secureswipesolutions/contact-us/', 'Contact Us', '21987f6', 'Contact page Form', 0, 0, '170.85.200.211', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 1, 0, 'new', 0, '{\"edit_post_id\":\"29\"}', '2025-11-23 20:40:50', '2025-11-23 20:40:50', '2025-11-23 20:40:50', '2025-11-23 20:40:50'),
(2, 'submission', '2630f3ce-8d96-4a06-b6c4-ad062b9b02a0', 9, 29, 'https://mrarif.me/secureswipesolutions/contact-us/', 'Contact Us', '21987f6', 'Contact page Form', 0, 0, '170.85.200.211', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36', 1, 0, 'new', 0, '{\"edit_post_id\":\"29\"}', '2025-11-23 20:40:57', '2025-11-23 20:40:57', '2025-11-23 20:40:57', '2025-11-23 20:40:57');

-- --------------------------------------------------------

--
-- Table structure for table `wps_e_submissions_actions_log`
--

CREATE TABLE `wps_e_submissions_actions_log` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `submission_id` bigint(20) UNSIGNED NOT NULL,
  `action_name` varchar(60) NOT NULL,
  `action_label` varchar(60) DEFAULT NULL,
  `status` varchar(20) NOT NULL,
  `log` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wps_e_submissions_actions_log`
--

INSERT INTO `wps_e_submissions_actions_log` (`id`, `submission_id`, `action_name`, `action_label`, `status`, `log`, `created_at_gmt`, `updated_at_gmt`, `created_at`, `updated_at`) VALUES
(1, 1, 'email', 'Email', 'failed', 'Your submission failed because of a server error.', '2025-11-23 20:40:50', '2025-11-23 20:40:50', '2025-11-23 20:40:50', '2025-11-23 20:40:50'),
(2, 2, 'email', 'Email', 'failed', 'Your submission failed because of a server error.', '2025-11-23 20:40:57', '2025-11-23 20:40:57', '2025-11-23 20:40:57', '2025-11-23 20:40:57');

-- --------------------------------------------------------

--
-- Table structure for table `wps_e_submissions_values`
--

CREATE TABLE `wps_e_submissions_values` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `submission_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `key` varchar(60) DEFAULT NULL,
  `value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wps_e_submissions_values`
--

INSERT INTO `wps_e_submissions_values` (`id`, `submission_id`, `key`, `value`) VALUES
(1, 1, 'name', 'Ayesha'),
(2, 1, 'field_fa204ec', 'Dumas'),
(3, 1, 'email', 'ayesha.dumas@gmail.com'),
(4, 1, 'field_80fa6df', '3107700415'),
(5, 1, 'field_cd3fec3', 'Test Dispensary'),
(6, 1, 'message', 'I\'m interested in testing out a free ATM.  Let\'s talk!'),
(7, 2, 'name', 'Ayesha'),
(8, 2, 'field_fa204ec', 'Dumas'),
(9, 2, 'email', 'ayesha.dumas@gmail.com'),
(10, 2, 'field_80fa6df', '3107700415'),
(11, 2, 'field_cd3fec3', 'Test Dispensary'),
(12, 2, 'message', 'I\'m interested in testing out a free ATM.  Let\'s talk!');

-- --------------------------------------------------------

--
-- Table structure for table `wps_links`
--

CREATE TABLE `wps_links` (
  `link_id` bigint(20) UNSIGNED NOT NULL,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) UNSIGNED NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wps_litespeed_url`
--

CREATE TABLE `wps_litespeed_url` (
  `id` bigint(20) NOT NULL,
  `url` varchar(500) NOT NULL,
  `cache_tags` varchar(1000) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wps_litespeed_url_file`
--

CREATE TABLE `wps_litespeed_url_file` (
  `id` bigint(20) NOT NULL,
  `url_id` bigint(20) NOT NULL,
  `vary` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'md5 of final vary',
  `filename` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'md5 of file content',
  `type` tinyint(4) NOT NULL COMMENT 'css=1,js=2,ccss=3,ucss=4',
  `mobile` tinyint(4) NOT NULL COMMENT 'mobile=1',
  `webp` tinyint(4) NOT NULL COMMENT 'webp=1',
  `expired` int(11) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wps_options`
--

CREATE TABLE `wps_options` (
  `option_id` bigint(20) UNSIGNED NOT NULL,
  `option_name` varchar(191) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wps_options`
--

INSERT INTO `wps_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'cron', 'a:12:{i:1765268571;a:1:{s:19:\"litespeed_task_lqip\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:16:\"litespeed_filter\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1765268887;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1765283287;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1765283292;a:3:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1765283293;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1765283329;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1765286887;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1765288687;a:1:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1765290487;a:1:{s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1765628924;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1765715287;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}', 'on'),
(2, 'siteurl', 'https://mrarif.me/secureswipesolutions', 'on'),
(3, 'home', 'https://mrarif.me/secureswipesolutions', 'on'),
(4, 'blogname', 'Secure Swipe Solutions', 'on'),
(5, 'blogdescription', 'Welcome', 'on'),
(6, 'users_can_register', '0', 'on'),
(7, 'admin_email', 'arifwebsols@gmail.com', 'on'),
(8, 'start_of_week', '1', 'on'),
(9, 'use_balanceTags', '0', 'on'),
(10, 'use_smilies', '1', 'on'),
(11, 'require_name_email', '1', 'on'),
(12, 'comments_notify', '1', 'on'),
(13, 'posts_per_rss', '10', 'on'),
(14, 'rss_use_excerpt', '0', 'on'),
(15, 'mailserver_url', 'mail.example.com', 'on'),
(16, 'mailserver_login', 'login@example.com', 'on'),
(17, 'mailserver_pass', '', 'on'),
(18, 'mailserver_port', '110', 'on'),
(19, 'default_category', '1', 'on'),
(20, 'default_comment_status', 'open', 'on'),
(21, 'default_ping_status', 'open', 'on'),
(22, 'default_pingback_flag', '1', 'on'),
(23, 'posts_per_page', '10', 'on'),
(24, 'date_format', 'F j, Y', 'on'),
(25, 'time_format', 'g:i a', 'on'),
(26, 'links_updated_date_format', 'F j, Y g:i a', 'on'),
(27, 'comment_moderation', '0', 'on'),
(28, 'moderation_notify', '1', 'on'),
(29, 'permalink_structure', '/%postname%/', 'on'),
(30, 'rewrite_rules', 'a:109:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:46:\"e-floating-buttons/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"e-floating-buttons/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:76:\"e-floating-buttons/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:52:\"e-floating-buttons/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"e-floating-buttons/([^/]+)/embed/?$\";s:51:\"index.php?e-floating-buttons=$matches[1]&embed=true\";s:39:\"e-floating-buttons/([^/]+)/trackback/?$\";s:45:\"index.php?e-floating-buttons=$matches[1]&tb=1\";s:47:\"e-floating-buttons/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&paged=$matches[2]\";s:54:\"e-floating-buttons/([^/]+)/comment-page-([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&cpage=$matches[2]\";s:43:\"e-floating-buttons/([^/]+)(?:/([0-9]+))?/?$\";s:57:\"index.php?e-floating-buttons=$matches[1]&page=$matches[2]\";s:35:\"e-floating-buttons/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"e-floating-buttons/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"e-floating-buttons/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"e-floating-buttons/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=10&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}', 'on'),
(31, 'hack_file', '0', 'on'),
(32, 'blog_charset', 'UTF-8', 'on'),
(33, 'moderation_keys', '', 'off'),
(34, 'active_plugins', 'a:5:{i:0;s:31:\"backup-backup/backup-backup.php\";i:1;s:31:\"elementor-pro/elementor-pro.php\";i:2;s:23:\"elementor/elementor.php\";i:3;s:35:\"litespeed-cache/litespeed-cache.php\";i:4;s:41:\"powerpack-elements/powerpack-elements.php\";}', 'on'),
(35, 'category_base', '', 'on'),
(36, 'ping_sites', 'https://rpc.pingomatic.com/', 'on'),
(37, 'comment_max_links', '2', 'on'),
(38, 'gmt_offset', '0', 'on'),
(39, 'default_email_category', '1', 'on'),
(40, 'recently_edited', 'a:3:{i:0;s:87:\"/home/mrarqpph/public_html/secureswipesolutions/wp-content/themes/astra-child/style.css\";i:2;s:91:\"/home/mrarqpph/public_html/secureswipesolutions/wp-content/themes/astra-child/functions.php\";i:3;s:0:\"\";}', 'off'),
(41, 'template', 'astra', 'on'),
(42, 'stylesheet', 'astra-child', 'on'),
(43, 'comment_registration', '0', 'on'),
(44, 'html_type', 'text/html', 'on'),
(45, 'use_trackback', '0', 'on'),
(46, 'default_role', 'subscriber', 'on'),
(47, 'db_version', '60717', 'on'),
(48, 'uploads_use_yearmonth_folders', '1', 'on'),
(49, 'upload_path', '', 'on'),
(50, 'blog_public', '1', 'on'),
(51, 'default_link_category', '2', 'on'),
(52, 'show_on_front', 'page', 'on'),
(53, 'tag_base', '', 'on'),
(54, 'show_avatars', '1', 'on'),
(55, 'avatar_rating', 'G', 'on'),
(56, 'upload_url_path', '', 'on'),
(57, 'thumbnail_size_w', '150', 'on'),
(58, 'thumbnail_size_h', '150', 'on'),
(59, 'thumbnail_crop', '1', 'on'),
(60, 'medium_size_w', '300', 'on'),
(61, 'medium_size_h', '300', 'on'),
(62, 'avatar_default', 'mystery', 'on'),
(63, 'large_size_w', '1024', 'on'),
(64, 'large_size_h', '1024', 'on'),
(65, 'image_default_link_type', 'none', 'on'),
(66, 'image_default_size', '', 'on'),
(67, 'image_default_align', '', 'on'),
(68, 'close_comments_for_old_posts', '0', 'on'),
(69, 'close_comments_days_old', '14', 'on'),
(70, 'thread_comments', '1', 'on'),
(71, 'thread_comments_depth', '5', 'on'),
(72, 'page_comments', '0', 'on'),
(73, 'comments_per_page', '50', 'on'),
(74, 'default_comments_page', 'newest', 'on'),
(75, 'comment_order', 'asc', 'on'),
(76, 'sticky_posts', 'a:0:{}', 'on'),
(77, 'widget_categories', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(78, 'widget_text', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(79, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(80, 'uninstall_plugins', 'a:3:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:31:\"backup-backup/backup-backup.php\";s:21:\"bmi_uninstall_handler\";s:35:\"litespeed-cache/litespeed-cache.php\";s:47:\"LiteSpeed\\Activation::uninstall_litespeed_cache\";}', 'off'),
(81, 'timezone_string', '', 'on'),
(82, 'page_for_posts', '0', 'on'),
(83, 'page_on_front', '10', 'on'),
(84, 'default_post_format', '0', 'on'),
(85, 'link_manager_enabled', '0', 'on'),
(86, 'finished_splitting_shared_terms', '1', 'on'),
(87, 'site_icon', '608', 'on'),
(88, 'medium_large_size_w', '768', 'on'),
(89, 'medium_large_size_h', '0', 'on'),
(90, 'wp_page_for_privacy_policy', '3', 'on'),
(91, 'show_comments_cookies_opt_in', '1', 'on'),
(92, 'admin_email_lifespan', '1778761687', 'on'),
(93, 'disallowed_keys', '', 'off'),
(94, 'comment_previously_approved', '1', 'on'),
(95, 'auto_plugin_theme_update_emails', 'a:0:{}', 'off'),
(96, 'auto_update_core_dev', 'enabled', 'on'),
(97, 'auto_update_core_minor', 'enabled', 'on'),
(98, 'auto_update_core_major', 'enabled', 'on'),
(99, 'wp_force_deactivated_plugins', 'a:0:{}', 'on'),
(100, 'wp_attachment_pages_enabled', '0', 'on'),
(101, 'initial_db_version', '60421', 'on'),
(102, 'wps_user_roles', 'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:68:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:26:\"create_notes_elementor-pro\";b:1;s:24:\"edit_notes_elementor-pro\";b:1;s:26:\"delete_notes_elementor-pro\";b:1;s:24:\"read_notes_elementor-pro\";b:1;s:31:\"edit_others_notes_elementor-pro\";b:1;s:33:\"delete_others_notes_elementor-pro\";b:1;s:39:\"read_others_private_notes_elementor-pro\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}', 'on'),
(103, 'fresh_site', '0', 'off'),
(104, 'user_count', '4', 'off'),
(105, 'widget_block', 'a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}', 'auto'),
(106, 'sidebars_widgets', 'a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}s:13:\"array_version\";i:3;}', 'auto'),
(107, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(108, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(109, 'widget_archives', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(110, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(111, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(112, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(113, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(114, 'widget_meta', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(115, 'widget_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(116, 'widget_recent-posts', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(117, 'widget_recent-comments', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(118, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(119, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(120, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(121, '_transient_wp_core_block_css_files', 'a:2:{s:7:\"version\";s:3:\"6.9\";s:5:\"files\";a:584:{i:0;s:31:\"accordion-heading/style-rtl.css\";i:1;s:35:\"accordion-heading/style-rtl.min.css\";i:2;s:27:\"accordion-heading/style.css\";i:3;s:31:\"accordion-heading/style.min.css\";i:4;s:28:\"accordion-item/style-rtl.css\";i:5;s:32:\"accordion-item/style-rtl.min.css\";i:6;s:24:\"accordion-item/style.css\";i:7;s:28:\"accordion-item/style.min.css\";i:8;s:29:\"accordion-panel/style-rtl.css\";i:9;s:33:\"accordion-panel/style-rtl.min.css\";i:10;s:25:\"accordion-panel/style.css\";i:11;s:29:\"accordion-panel/style.min.css\";i:12;s:23:\"accordion/style-rtl.css\";i:13;s:27:\"accordion/style-rtl.min.css\";i:14;s:19:\"accordion/style.css\";i:15;s:23:\"accordion/style.min.css\";i:16;s:23:\"archives/editor-rtl.css\";i:17;s:27:\"archives/editor-rtl.min.css\";i:18;s:19:\"archives/editor.css\";i:19;s:23:\"archives/editor.min.css\";i:20;s:22:\"archives/style-rtl.css\";i:21;s:26:\"archives/style-rtl.min.css\";i:22;s:18:\"archives/style.css\";i:23;s:22:\"archives/style.min.css\";i:24;s:20:\"audio/editor-rtl.css\";i:25;s:24:\"audio/editor-rtl.min.css\";i:26;s:16:\"audio/editor.css\";i:27;s:20:\"audio/editor.min.css\";i:28;s:19:\"audio/style-rtl.css\";i:29;s:23:\"audio/style-rtl.min.css\";i:30;s:15:\"audio/style.css\";i:31;s:19:\"audio/style.min.css\";i:32;s:19:\"audio/theme-rtl.css\";i:33;s:23:\"audio/theme-rtl.min.css\";i:34;s:15:\"audio/theme.css\";i:35;s:19:\"audio/theme.min.css\";i:36;s:21:\"avatar/editor-rtl.css\";i:37;s:25:\"avatar/editor-rtl.min.css\";i:38;s:17:\"avatar/editor.css\";i:39;s:21:\"avatar/editor.min.css\";i:40;s:20:\"avatar/style-rtl.css\";i:41;s:24:\"avatar/style-rtl.min.css\";i:42;s:16:\"avatar/style.css\";i:43;s:20:\"avatar/style.min.css\";i:44;s:21:\"button/editor-rtl.css\";i:45;s:25:\"button/editor-rtl.min.css\";i:46;s:17:\"button/editor.css\";i:47;s:21:\"button/editor.min.css\";i:48;s:20:\"button/style-rtl.css\";i:49;s:24:\"button/style-rtl.min.css\";i:50;s:16:\"button/style.css\";i:51;s:20:\"button/style.min.css\";i:52;s:22:\"buttons/editor-rtl.css\";i:53;s:26:\"buttons/editor-rtl.min.css\";i:54;s:18:\"buttons/editor.css\";i:55;s:22:\"buttons/editor.min.css\";i:56;s:21:\"buttons/style-rtl.css\";i:57;s:25:\"buttons/style-rtl.min.css\";i:58;s:17:\"buttons/style.css\";i:59;s:21:\"buttons/style.min.css\";i:60;s:22:\"calendar/style-rtl.css\";i:61;s:26:\"calendar/style-rtl.min.css\";i:62;s:18:\"calendar/style.css\";i:63;s:22:\"calendar/style.min.css\";i:64;s:25:\"categories/editor-rtl.css\";i:65;s:29:\"categories/editor-rtl.min.css\";i:66;s:21:\"categories/editor.css\";i:67;s:25:\"categories/editor.min.css\";i:68;s:24:\"categories/style-rtl.css\";i:69;s:28:\"categories/style-rtl.min.css\";i:70;s:20:\"categories/style.css\";i:71;s:24:\"categories/style.min.css\";i:72;s:19:\"code/editor-rtl.css\";i:73;s:23:\"code/editor-rtl.min.css\";i:74;s:15:\"code/editor.css\";i:75;s:19:\"code/editor.min.css\";i:76;s:18:\"code/style-rtl.css\";i:77;s:22:\"code/style-rtl.min.css\";i:78;s:14:\"code/style.css\";i:79;s:18:\"code/style.min.css\";i:80;s:18:\"code/theme-rtl.css\";i:81;s:22:\"code/theme-rtl.min.css\";i:82;s:14:\"code/theme.css\";i:83;s:18:\"code/theme.min.css\";i:84;s:22:\"columns/editor-rtl.css\";i:85;s:26:\"columns/editor-rtl.min.css\";i:86;s:18:\"columns/editor.css\";i:87;s:22:\"columns/editor.min.css\";i:88;s:21:\"columns/style-rtl.css\";i:89;s:25:\"columns/style-rtl.min.css\";i:90;s:17:\"columns/style.css\";i:91;s:21:\"columns/style.min.css\";i:92;s:33:\"comment-author-name/style-rtl.css\";i:93;s:37:\"comment-author-name/style-rtl.min.css\";i:94;s:29:\"comment-author-name/style.css\";i:95;s:33:\"comment-author-name/style.min.css\";i:96;s:29:\"comment-content/style-rtl.css\";i:97;s:33:\"comment-content/style-rtl.min.css\";i:98;s:25:\"comment-content/style.css\";i:99;s:29:\"comment-content/style.min.css\";i:100;s:26:\"comment-date/style-rtl.css\";i:101;s:30:\"comment-date/style-rtl.min.css\";i:102;s:22:\"comment-date/style.css\";i:103;s:26:\"comment-date/style.min.css\";i:104;s:31:\"comment-edit-link/style-rtl.css\";i:105;s:35:\"comment-edit-link/style-rtl.min.css\";i:106;s:27:\"comment-edit-link/style.css\";i:107;s:31:\"comment-edit-link/style.min.css\";i:108;s:32:\"comment-reply-link/style-rtl.css\";i:109;s:36:\"comment-reply-link/style-rtl.min.css\";i:110;s:28:\"comment-reply-link/style.css\";i:111;s:32:\"comment-reply-link/style.min.css\";i:112;s:30:\"comment-template/style-rtl.css\";i:113;s:34:\"comment-template/style-rtl.min.css\";i:114;s:26:\"comment-template/style.css\";i:115;s:30:\"comment-template/style.min.css\";i:116;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:117;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:118;s:38:\"comments-pagination-numbers/editor.css\";i:119;s:42:\"comments-pagination-numbers/editor.min.css\";i:120;s:34:\"comments-pagination/editor-rtl.css\";i:121;s:38:\"comments-pagination/editor-rtl.min.css\";i:122;s:30:\"comments-pagination/editor.css\";i:123;s:34:\"comments-pagination/editor.min.css\";i:124;s:33:\"comments-pagination/style-rtl.css\";i:125;s:37:\"comments-pagination/style-rtl.min.css\";i:126;s:29:\"comments-pagination/style.css\";i:127;s:33:\"comments-pagination/style.min.css\";i:128;s:29:\"comments-title/editor-rtl.css\";i:129;s:33:\"comments-title/editor-rtl.min.css\";i:130;s:25:\"comments-title/editor.css\";i:131;s:29:\"comments-title/editor.min.css\";i:132;s:23:\"comments/editor-rtl.css\";i:133;s:27:\"comments/editor-rtl.min.css\";i:134;s:19:\"comments/editor.css\";i:135;s:23:\"comments/editor.min.css\";i:136;s:22:\"comments/style-rtl.css\";i:137;s:26:\"comments/style-rtl.min.css\";i:138;s:18:\"comments/style.css\";i:139;s:22:\"comments/style.min.css\";i:140;s:20:\"cover/editor-rtl.css\";i:141;s:24:\"cover/editor-rtl.min.css\";i:142;s:16:\"cover/editor.css\";i:143;s:20:\"cover/editor.min.css\";i:144;s:19:\"cover/style-rtl.css\";i:145;s:23:\"cover/style-rtl.min.css\";i:146;s:15:\"cover/style.css\";i:147;s:19:\"cover/style.min.css\";i:148;s:22:\"details/editor-rtl.css\";i:149;s:26:\"details/editor-rtl.min.css\";i:150;s:18:\"details/editor.css\";i:151;s:22:\"details/editor.min.css\";i:152;s:21:\"details/style-rtl.css\";i:153;s:25:\"details/style-rtl.min.css\";i:154;s:17:\"details/style.css\";i:155;s:21:\"details/style.min.css\";i:156;s:20:\"embed/editor-rtl.css\";i:157;s:24:\"embed/editor-rtl.min.css\";i:158;s:16:\"embed/editor.css\";i:159;s:20:\"embed/editor.min.css\";i:160;s:19:\"embed/style-rtl.css\";i:161;s:23:\"embed/style-rtl.min.css\";i:162;s:15:\"embed/style.css\";i:163;s:19:\"embed/style.min.css\";i:164;s:19:\"embed/theme-rtl.css\";i:165;s:23:\"embed/theme-rtl.min.css\";i:166;s:15:\"embed/theme.css\";i:167;s:19:\"embed/theme.min.css\";i:168;s:19:\"file/editor-rtl.css\";i:169;s:23:\"file/editor-rtl.min.css\";i:170;s:15:\"file/editor.css\";i:171;s:19:\"file/editor.min.css\";i:172;s:18:\"file/style-rtl.css\";i:173;s:22:\"file/style-rtl.min.css\";i:174;s:14:\"file/style.css\";i:175;s:18:\"file/style.min.css\";i:176;s:23:\"footnotes/style-rtl.css\";i:177;s:27:\"footnotes/style-rtl.min.css\";i:178;s:19:\"footnotes/style.css\";i:179;s:23:\"footnotes/style.min.css\";i:180;s:23:\"freeform/editor-rtl.css\";i:181;s:27:\"freeform/editor-rtl.min.css\";i:182;s:19:\"freeform/editor.css\";i:183;s:23:\"freeform/editor.min.css\";i:184;s:22:\"gallery/editor-rtl.css\";i:185;s:26:\"gallery/editor-rtl.min.css\";i:186;s:18:\"gallery/editor.css\";i:187;s:22:\"gallery/editor.min.css\";i:188;s:21:\"gallery/style-rtl.css\";i:189;s:25:\"gallery/style-rtl.min.css\";i:190;s:17:\"gallery/style.css\";i:191;s:21:\"gallery/style.min.css\";i:192;s:21:\"gallery/theme-rtl.css\";i:193;s:25:\"gallery/theme-rtl.min.css\";i:194;s:17:\"gallery/theme.css\";i:195;s:21:\"gallery/theme.min.css\";i:196;s:20:\"group/editor-rtl.css\";i:197;s:24:\"group/editor-rtl.min.css\";i:198;s:16:\"group/editor.css\";i:199;s:20:\"group/editor.min.css\";i:200;s:19:\"group/style-rtl.css\";i:201;s:23:\"group/style-rtl.min.css\";i:202;s:15:\"group/style.css\";i:203;s:19:\"group/style.min.css\";i:204;s:19:\"group/theme-rtl.css\";i:205;s:23:\"group/theme-rtl.min.css\";i:206;s:15:\"group/theme.css\";i:207;s:19:\"group/theme.min.css\";i:208;s:21:\"heading/style-rtl.css\";i:209;s:25:\"heading/style-rtl.min.css\";i:210;s:17:\"heading/style.css\";i:211;s:21:\"heading/style.min.css\";i:212;s:19:\"html/editor-rtl.css\";i:213;s:23:\"html/editor-rtl.min.css\";i:214;s:15:\"html/editor.css\";i:215;s:19:\"html/editor.min.css\";i:216;s:20:\"image/editor-rtl.css\";i:217;s:24:\"image/editor-rtl.min.css\";i:218;s:16:\"image/editor.css\";i:219;s:20:\"image/editor.min.css\";i:220;s:19:\"image/style-rtl.css\";i:221;s:23:\"image/style-rtl.min.css\";i:222;s:15:\"image/style.css\";i:223;s:19:\"image/style.min.css\";i:224;s:19:\"image/theme-rtl.css\";i:225;s:23:\"image/theme-rtl.min.css\";i:226;s:15:\"image/theme.css\";i:227;s:19:\"image/theme.min.css\";i:228;s:29:\"latest-comments/style-rtl.css\";i:229;s:33:\"latest-comments/style-rtl.min.css\";i:230;s:25:\"latest-comments/style.css\";i:231;s:29:\"latest-comments/style.min.css\";i:232;s:27:\"latest-posts/editor-rtl.css\";i:233;s:31:\"latest-posts/editor-rtl.min.css\";i:234;s:23:\"latest-posts/editor.css\";i:235;s:27:\"latest-posts/editor.min.css\";i:236;s:26:\"latest-posts/style-rtl.css\";i:237;s:30:\"latest-posts/style-rtl.min.css\";i:238;s:22:\"latest-posts/style.css\";i:239;s:26:\"latest-posts/style.min.css\";i:240;s:18:\"list/style-rtl.css\";i:241;s:22:\"list/style-rtl.min.css\";i:242;s:14:\"list/style.css\";i:243;s:18:\"list/style.min.css\";i:244;s:22:\"loginout/style-rtl.css\";i:245;s:26:\"loginout/style-rtl.min.css\";i:246;s:18:\"loginout/style.css\";i:247;s:22:\"loginout/style.min.css\";i:248;s:19:\"math/editor-rtl.css\";i:249;s:23:\"math/editor-rtl.min.css\";i:250;s:15:\"math/editor.css\";i:251;s:19:\"math/editor.min.css\";i:252;s:18:\"math/style-rtl.css\";i:253;s:22:\"math/style-rtl.min.css\";i:254;s:14:\"math/style.css\";i:255;s:18:\"math/style.min.css\";i:256;s:25:\"media-text/editor-rtl.css\";i:257;s:29:\"media-text/editor-rtl.min.css\";i:258;s:21:\"media-text/editor.css\";i:259;s:25:\"media-text/editor.min.css\";i:260;s:24:\"media-text/style-rtl.css\";i:261;s:28:\"media-text/style-rtl.min.css\";i:262;s:20:\"media-text/style.css\";i:263;s:24:\"media-text/style.min.css\";i:264;s:19:\"more/editor-rtl.css\";i:265;s:23:\"more/editor-rtl.min.css\";i:266;s:15:\"more/editor.css\";i:267;s:19:\"more/editor.min.css\";i:268;s:30:\"navigation-link/editor-rtl.css\";i:269;s:34:\"navigation-link/editor-rtl.min.css\";i:270;s:26:\"navigation-link/editor.css\";i:271;s:30:\"navigation-link/editor.min.css\";i:272;s:29:\"navigation-link/style-rtl.css\";i:273;s:33:\"navigation-link/style-rtl.min.css\";i:274;s:25:\"navigation-link/style.css\";i:275;s:29:\"navigation-link/style.min.css\";i:276;s:33:\"navigation-submenu/editor-rtl.css\";i:277;s:37:\"navigation-submenu/editor-rtl.min.css\";i:278;s:29:\"navigation-submenu/editor.css\";i:279;s:33:\"navigation-submenu/editor.min.css\";i:280;s:25:\"navigation/editor-rtl.css\";i:281;s:29:\"navigation/editor-rtl.min.css\";i:282;s:21:\"navigation/editor.css\";i:283;s:25:\"navigation/editor.min.css\";i:284;s:24:\"navigation/style-rtl.css\";i:285;s:28:\"navigation/style-rtl.min.css\";i:286;s:20:\"navigation/style.css\";i:287;s:24:\"navigation/style.min.css\";i:288;s:23:\"nextpage/editor-rtl.css\";i:289;s:27:\"nextpage/editor-rtl.min.css\";i:290;s:19:\"nextpage/editor.css\";i:291;s:23:\"nextpage/editor.min.css\";i:292;s:24:\"page-list/editor-rtl.css\";i:293;s:28:\"page-list/editor-rtl.min.css\";i:294;s:20:\"page-list/editor.css\";i:295;s:24:\"page-list/editor.min.css\";i:296;s:23:\"page-list/style-rtl.css\";i:297;s:27:\"page-list/style-rtl.min.css\";i:298;s:19:\"page-list/style.css\";i:299;s:23:\"page-list/style.min.css\";i:300;s:24:\"paragraph/editor-rtl.css\";i:301;s:28:\"paragraph/editor-rtl.min.css\";i:302;s:20:\"paragraph/editor.css\";i:303;s:24:\"paragraph/editor.min.css\";i:304;s:23:\"paragraph/style-rtl.css\";i:305;s:27:\"paragraph/style-rtl.min.css\";i:306;s:19:\"paragraph/style.css\";i:307;s:23:\"paragraph/style.min.css\";i:308;s:35:\"post-author-biography/style-rtl.css\";i:309;s:39:\"post-author-biography/style-rtl.min.css\";i:310;s:31:\"post-author-biography/style.css\";i:311;s:35:\"post-author-biography/style.min.css\";i:312;s:30:\"post-author-name/style-rtl.css\";i:313;s:34:\"post-author-name/style-rtl.min.css\";i:314;s:26:\"post-author-name/style.css\";i:315;s:30:\"post-author-name/style.min.css\";i:316;s:25:\"post-author/style-rtl.css\";i:317;s:29:\"post-author/style-rtl.min.css\";i:318;s:21:\"post-author/style.css\";i:319;s:25:\"post-author/style.min.css\";i:320;s:33:\"post-comments-count/style-rtl.css\";i:321;s:37:\"post-comments-count/style-rtl.min.css\";i:322;s:29:\"post-comments-count/style.css\";i:323;s:33:\"post-comments-count/style.min.css\";i:324;s:33:\"post-comments-form/editor-rtl.css\";i:325;s:37:\"post-comments-form/editor-rtl.min.css\";i:326;s:29:\"post-comments-form/editor.css\";i:327;s:33:\"post-comments-form/editor.min.css\";i:328;s:32:\"post-comments-form/style-rtl.css\";i:329;s:36:\"post-comments-form/style-rtl.min.css\";i:330;s:28:\"post-comments-form/style.css\";i:331;s:32:\"post-comments-form/style.min.css\";i:332;s:32:\"post-comments-link/style-rtl.css\";i:333;s:36:\"post-comments-link/style-rtl.min.css\";i:334;s:28:\"post-comments-link/style.css\";i:335;s:32:\"post-comments-link/style.min.css\";i:336;s:26:\"post-content/style-rtl.css\";i:337;s:30:\"post-content/style-rtl.min.css\";i:338;s:22:\"post-content/style.css\";i:339;s:26:\"post-content/style.min.css\";i:340;s:23:\"post-date/style-rtl.css\";i:341;s:27:\"post-date/style-rtl.min.css\";i:342;s:19:\"post-date/style.css\";i:343;s:23:\"post-date/style.min.css\";i:344;s:27:\"post-excerpt/editor-rtl.css\";i:345;s:31:\"post-excerpt/editor-rtl.min.css\";i:346;s:23:\"post-excerpt/editor.css\";i:347;s:27:\"post-excerpt/editor.min.css\";i:348;s:26:\"post-excerpt/style-rtl.css\";i:349;s:30:\"post-excerpt/style-rtl.min.css\";i:350;s:22:\"post-excerpt/style.css\";i:351;s:26:\"post-excerpt/style.min.css\";i:352;s:34:\"post-featured-image/editor-rtl.css\";i:353;s:38:\"post-featured-image/editor-rtl.min.css\";i:354;s:30:\"post-featured-image/editor.css\";i:355;s:34:\"post-featured-image/editor.min.css\";i:356;s:33:\"post-featured-image/style-rtl.css\";i:357;s:37:\"post-featured-image/style-rtl.min.css\";i:358;s:29:\"post-featured-image/style.css\";i:359;s:33:\"post-featured-image/style.min.css\";i:360;s:34:\"post-navigation-link/style-rtl.css\";i:361;s:38:\"post-navigation-link/style-rtl.min.css\";i:362;s:30:\"post-navigation-link/style.css\";i:363;s:34:\"post-navigation-link/style.min.css\";i:364;s:27:\"post-template/style-rtl.css\";i:365;s:31:\"post-template/style-rtl.min.css\";i:366;s:23:\"post-template/style.css\";i:367;s:27:\"post-template/style.min.css\";i:368;s:24:\"post-terms/style-rtl.css\";i:369;s:28:\"post-terms/style-rtl.min.css\";i:370;s:20:\"post-terms/style.css\";i:371;s:24:\"post-terms/style.min.css\";i:372;s:31:\"post-time-to-read/style-rtl.css\";i:373;s:35:\"post-time-to-read/style-rtl.min.css\";i:374;s:27:\"post-time-to-read/style.css\";i:375;s:31:\"post-time-to-read/style.min.css\";i:376;s:24:\"post-title/style-rtl.css\";i:377;s:28:\"post-title/style-rtl.min.css\";i:378;s:20:\"post-title/style.css\";i:379;s:24:\"post-title/style.min.css\";i:380;s:26:\"preformatted/style-rtl.css\";i:381;s:30:\"preformatted/style-rtl.min.css\";i:382;s:22:\"preformatted/style.css\";i:383;s:26:\"preformatted/style.min.css\";i:384;s:24:\"pullquote/editor-rtl.css\";i:385;s:28:\"pullquote/editor-rtl.min.css\";i:386;s:20:\"pullquote/editor.css\";i:387;s:24:\"pullquote/editor.min.css\";i:388;s:23:\"pullquote/style-rtl.css\";i:389;s:27:\"pullquote/style-rtl.min.css\";i:390;s:19:\"pullquote/style.css\";i:391;s:23:\"pullquote/style.min.css\";i:392;s:23:\"pullquote/theme-rtl.css\";i:393;s:27:\"pullquote/theme-rtl.min.css\";i:394;s:19:\"pullquote/theme.css\";i:395;s:23:\"pullquote/theme.min.css\";i:396;s:39:\"query-pagination-numbers/editor-rtl.css\";i:397;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:398;s:35:\"query-pagination-numbers/editor.css\";i:399;s:39:\"query-pagination-numbers/editor.min.css\";i:400;s:31:\"query-pagination/editor-rtl.css\";i:401;s:35:\"query-pagination/editor-rtl.min.css\";i:402;s:27:\"query-pagination/editor.css\";i:403;s:31:\"query-pagination/editor.min.css\";i:404;s:30:\"query-pagination/style-rtl.css\";i:405;s:34:\"query-pagination/style-rtl.min.css\";i:406;s:26:\"query-pagination/style.css\";i:407;s:30:\"query-pagination/style.min.css\";i:408;s:25:\"query-title/style-rtl.css\";i:409;s:29:\"query-title/style-rtl.min.css\";i:410;s:21:\"query-title/style.css\";i:411;s:25:\"query-title/style.min.css\";i:412;s:25:\"query-total/style-rtl.css\";i:413;s:29:\"query-total/style-rtl.min.css\";i:414;s:21:\"query-total/style.css\";i:415;s:25:\"query-total/style.min.css\";i:416;s:20:\"query/editor-rtl.css\";i:417;s:24:\"query/editor-rtl.min.css\";i:418;s:16:\"query/editor.css\";i:419;s:20:\"query/editor.min.css\";i:420;s:19:\"quote/style-rtl.css\";i:421;s:23:\"quote/style-rtl.min.css\";i:422;s:15:\"quote/style.css\";i:423;s:19:\"quote/style.min.css\";i:424;s:19:\"quote/theme-rtl.css\";i:425;s:23:\"quote/theme-rtl.min.css\";i:426;s:15:\"quote/theme.css\";i:427;s:19:\"quote/theme.min.css\";i:428;s:23:\"read-more/style-rtl.css\";i:429;s:27:\"read-more/style-rtl.min.css\";i:430;s:19:\"read-more/style.css\";i:431;s:23:\"read-more/style.min.css\";i:432;s:18:\"rss/editor-rtl.css\";i:433;s:22:\"rss/editor-rtl.min.css\";i:434;s:14:\"rss/editor.css\";i:435;s:18:\"rss/editor.min.css\";i:436;s:17:\"rss/style-rtl.css\";i:437;s:21:\"rss/style-rtl.min.css\";i:438;s:13:\"rss/style.css\";i:439;s:17:\"rss/style.min.css\";i:440;s:21:\"search/editor-rtl.css\";i:441;s:25:\"search/editor-rtl.min.css\";i:442;s:17:\"search/editor.css\";i:443;s:21:\"search/editor.min.css\";i:444;s:20:\"search/style-rtl.css\";i:445;s:24:\"search/style-rtl.min.css\";i:446;s:16:\"search/style.css\";i:447;s:20:\"search/style.min.css\";i:448;s:20:\"search/theme-rtl.css\";i:449;s:24:\"search/theme-rtl.min.css\";i:450;s:16:\"search/theme.css\";i:451;s:20:\"search/theme.min.css\";i:452;s:24:\"separator/editor-rtl.css\";i:453;s:28:\"separator/editor-rtl.min.css\";i:454;s:20:\"separator/editor.css\";i:455;s:24:\"separator/editor.min.css\";i:456;s:23:\"separator/style-rtl.css\";i:457;s:27:\"separator/style-rtl.min.css\";i:458;s:19:\"separator/style.css\";i:459;s:23:\"separator/style.min.css\";i:460;s:23:\"separator/theme-rtl.css\";i:461;s:27:\"separator/theme-rtl.min.css\";i:462;s:19:\"separator/theme.css\";i:463;s:23:\"separator/theme.min.css\";i:464;s:24:\"shortcode/editor-rtl.css\";i:465;s:28:\"shortcode/editor-rtl.min.css\";i:466;s:20:\"shortcode/editor.css\";i:467;s:24:\"shortcode/editor.min.css\";i:468;s:24:\"site-logo/editor-rtl.css\";i:469;s:28:\"site-logo/editor-rtl.min.css\";i:470;s:20:\"site-logo/editor.css\";i:471;s:24:\"site-logo/editor.min.css\";i:472;s:23:\"site-logo/style-rtl.css\";i:473;s:27:\"site-logo/style-rtl.min.css\";i:474;s:19:\"site-logo/style.css\";i:475;s:23:\"site-logo/style.min.css\";i:476;s:27:\"site-tagline/editor-rtl.css\";i:477;s:31:\"site-tagline/editor-rtl.min.css\";i:478;s:23:\"site-tagline/editor.css\";i:479;s:27:\"site-tagline/editor.min.css\";i:480;s:26:\"site-tagline/style-rtl.css\";i:481;s:30:\"site-tagline/style-rtl.min.css\";i:482;s:22:\"site-tagline/style.css\";i:483;s:26:\"site-tagline/style.min.css\";i:484;s:25:\"site-title/editor-rtl.css\";i:485;s:29:\"site-title/editor-rtl.min.css\";i:486;s:21:\"site-title/editor.css\";i:487;s:25:\"site-title/editor.min.css\";i:488;s:24:\"site-title/style-rtl.css\";i:489;s:28:\"site-title/style-rtl.min.css\";i:490;s:20:\"site-title/style.css\";i:491;s:24:\"site-title/style.min.css\";i:492;s:26:\"social-link/editor-rtl.css\";i:493;s:30:\"social-link/editor-rtl.min.css\";i:494;s:22:\"social-link/editor.css\";i:495;s:26:\"social-link/editor.min.css\";i:496;s:27:\"social-links/editor-rtl.css\";i:497;s:31:\"social-links/editor-rtl.min.css\";i:498;s:23:\"social-links/editor.css\";i:499;s:27:\"social-links/editor.min.css\";i:500;s:26:\"social-links/style-rtl.css\";i:501;s:30:\"social-links/style-rtl.min.css\";i:502;s:22:\"social-links/style.css\";i:503;s:26:\"social-links/style.min.css\";i:504;s:21:\"spacer/editor-rtl.css\";i:505;s:25:\"spacer/editor-rtl.min.css\";i:506;s:17:\"spacer/editor.css\";i:507;s:21:\"spacer/editor.min.css\";i:508;s:20:\"spacer/style-rtl.css\";i:509;s:24:\"spacer/style-rtl.min.css\";i:510;s:16:\"spacer/style.css\";i:511;s:20:\"spacer/style.min.css\";i:512;s:20:\"table/editor-rtl.css\";i:513;s:24:\"table/editor-rtl.min.css\";i:514;s:16:\"table/editor.css\";i:515;s:20:\"table/editor.min.css\";i:516;s:19:\"table/style-rtl.css\";i:517;s:23:\"table/style-rtl.min.css\";i:518;s:15:\"table/style.css\";i:519;s:19:\"table/style.min.css\";i:520;s:19:\"table/theme-rtl.css\";i:521;s:23:\"table/theme-rtl.min.css\";i:522;s:15:\"table/theme.css\";i:523;s:19:\"table/theme.min.css\";i:524;s:24:\"tag-cloud/editor-rtl.css\";i:525;s:28:\"tag-cloud/editor-rtl.min.css\";i:526;s:20:\"tag-cloud/editor.css\";i:527;s:24:\"tag-cloud/editor.min.css\";i:528;s:23:\"tag-cloud/style-rtl.css\";i:529;s:27:\"tag-cloud/style-rtl.min.css\";i:530;s:19:\"tag-cloud/style.css\";i:531;s:23:\"tag-cloud/style.min.css\";i:532;s:28:\"template-part/editor-rtl.css\";i:533;s:32:\"template-part/editor-rtl.min.css\";i:534;s:24:\"template-part/editor.css\";i:535;s:28:\"template-part/editor.min.css\";i:536;s:27:\"template-part/theme-rtl.css\";i:537;s:31:\"template-part/theme-rtl.min.css\";i:538;s:23:\"template-part/theme.css\";i:539;s:27:\"template-part/theme.min.css\";i:540;s:24:\"term-count/style-rtl.css\";i:541;s:28:\"term-count/style-rtl.min.css\";i:542;s:20:\"term-count/style.css\";i:543;s:24:\"term-count/style.min.css\";i:544;s:30:\"term-description/style-rtl.css\";i:545;s:34:\"term-description/style-rtl.min.css\";i:546;s:26:\"term-description/style.css\";i:547;s:30:\"term-description/style.min.css\";i:548;s:23:\"term-name/style-rtl.css\";i:549;s:27:\"term-name/style-rtl.min.css\";i:550;s:19:\"term-name/style.css\";i:551;s:23:\"term-name/style.min.css\";i:552;s:28:\"term-template/editor-rtl.css\";i:553;s:32:\"term-template/editor-rtl.min.css\";i:554;s:24:\"term-template/editor.css\";i:555;s:28:\"term-template/editor.min.css\";i:556;s:27:\"term-template/style-rtl.css\";i:557;s:31:\"term-template/style-rtl.min.css\";i:558;s:23:\"term-template/style.css\";i:559;s:27:\"term-template/style.min.css\";i:560;s:27:\"text-columns/editor-rtl.css\";i:561;s:31:\"text-columns/editor-rtl.min.css\";i:562;s:23:\"text-columns/editor.css\";i:563;s:27:\"text-columns/editor.min.css\";i:564;s:26:\"text-columns/style-rtl.css\";i:565;s:30:\"text-columns/style-rtl.min.css\";i:566;s:22:\"text-columns/style.css\";i:567;s:26:\"text-columns/style.min.css\";i:568;s:19:\"verse/style-rtl.css\";i:569;s:23:\"verse/style-rtl.min.css\";i:570;s:15:\"verse/style.css\";i:571;s:19:\"verse/style.min.css\";i:572;s:20:\"video/editor-rtl.css\";i:573;s:24:\"video/editor-rtl.min.css\";i:574;s:16:\"video/editor.css\";i:575;s:20:\"video/editor.min.css\";i:576;s:19:\"video/style-rtl.css\";i:577;s:23:\"video/style-rtl.min.css\";i:578;s:15:\"video/style.css\";i:579;s:19:\"video/style.min.css\";i:580;s:19:\"video/theme-rtl.css\";i:581;s:23:\"video/theme-rtl.min.css\";i:582;s:15:\"video/theme.css\";i:583;s:19:\"video/theme.min.css\";}}', 'on');
INSERT INTO `wps_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(398, 'edd_sl_0db1b5f4838f5bc5af637174ef14407d', 'a:2:{s:7:\"timeout\";i:1765279315;s:5:\"value\";s:2315:\"{\"new_version\":\"2.12.15\",\"stable_version\":\"2.12.15\",\"name\":\"PowerPack Elements\",\"slug\":\"powerpack-elements\",\"url\":\"https:\\/\\/powerpackelements.com\\/downloads\\/powerpack-elements\\/?changelog=1\",\"last_updated\":\"2025-11-27 10:06:14\",\"homepage\":\"https:\\/\\/powerpackelements.com\",\"package\":\"https:\\/\\/powerpackelements.com\\/edd-sl\\/package_download\\/MTc2NTQ2MTExNTo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjA1NWQ1NTllNDljOWQxNTc1MjczNjE3ZWExZGVjOGUwOmh0dHBzQC8vbXJhcmlmLm1lL3NlY3VyZXN3aXBlc29sdXRpb25zOjA=\",\"download_link\":\"https:\\/\\/powerpackelements.com\\/edd-sl\\/package_download\\/MTc2NTQ2MTExNTo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjA1NWQ1NTllNDljOWQxNTc1MjczNjE3ZWExZGVjOGUwOmh0dHBzQC8vbXJhcmlmLm1lL3NlY3VyZXN3aXBlc29sdXRpb25zOjA=\",\"sections\":{\"changelog\":\"<p>Visit\\u00a0<a href=\\\"https:\\/\\/powerpackelements.com\\/change-logs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">changelogs page<\\/a> for details.<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":{\"1x\":\"https:\\/\\/powerpackelements.com\\/wp-content\\/uploads\\/edd\\/2019\\/02\\/pp-feature-128x128.png\",\"2x\":\"https:\\/\\/powerpackelements.com\\/wp-content\\/uploads\\/edd\\/2019\\/02\\/pp-feature-256x256.png\"},\"contributors\":{\"ideaboxcreations\":{\"display_name\":\"ideaboxcreations\",\"profile\":\"\\/\\/profiles.wordpress.org\\/ideaboxcreations\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=ideaboxcreations\"},\"bloompixel\":{\"display_name\":\"bloompixel\",\"profile\":\"\\/\\/profiles.wordpress.org\\/bloompixel\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=bloompixel\"},\"simrandeep\":{\"display_name\":\"simrandeep\",\"profile\":\"\\/\\/profiles.wordpress.org\\/simrandeep\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=simrandeep\"},\"ibachal\":{\"display_name\":\"ibachal\",\"profile\":\"\\/\\/profiles.wordpress.org\\/ibachal\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=ibachal\"},\"puneetsahalot\":{\"display_name\":\"puneetsahalot\",\"profile\":\"\\/\\/profiles.wordpress.org\\/puneetsahalot\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=puneetsahalot\"}},\"tested\":\"6.7.1\",\"changelog\":[\"<p>Visit\\u00a0<a href=\\\"https:\\/\\/powerpackelements.com\\/change-logs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">changelogs page<\\/a> for details.<\\/p>\\n\"],\"plugin\":\"powerpack-elements\\/powerpack-elements.php\",\"id\":\"powerpack-elements\\/powerpack-elements.php\"}\";}', 'off'),
(438, 'pp_elementor_modules', 'a:62:{i:0;s:21:\"pp-advanced-accordion\";i:1;s:16:\"pp-advanced-menu\";i:2;s:16:\"pp-advanced-tabs\";i:3;s:8:\"pp-album\";i:4;s:14:\"pp-author-list\";i:5;s:14:\"pp-breadcrumbs\";i:6;s:17:\"pp-business-hours\";i:7;s:19:\"pp-business-reviews\";i:8;s:10:\"pp-buttons\";i:9;s:14:\"pp-card-slider\";i:10;s:13:\"pp-categories\";i:11;s:9:\"pp-charts\";i:12;s:17:\"pp-content-reveal\";i:13;s:17:\"pp-content-ticker\";i:14;s:12:\"pp-countdown\";i:15;s:10:\"pp-counter\";i:16;s:10:\"pp-coupons\";i:17;s:10:\"pp-devices\";i:18;s:10:\"pp-divider\";i:19;s:15:\"pp-dual-heading\";i:20;s:16:\"pp-fancy-heading\";i:21;s:6:\"pp-faq\";i:22;s:10:\"pp-flipbox\";i:23;s:14:\"pp-google-maps\";i:24;s:11:\"pp-hotspots\";i:25;s:12:\"pp-icon-list\";i:26;s:18:\"pp-image-accordion\";i:27;s:19:\"pp-image-comparison\";i:28;s:16:\"pp-image-gallery\";i:29;s:15:\"pp-image-slider\";i:30;s:11:\"pp-info-box\";i:31;s:20:\"pp-info-box-carousel\";i:32;s:12:\"pp-info-list\";i:33;s:13:\"pp-info-table\";i:34;s:12:\"pp-instafeed\";i:35;s:13:\"pp-login-form\";i:36;s:16:\"pp-logo-carousel\";i:37;s:12:\"pp-logo-grid\";i:38;s:18:\"pp-magazine-slider\";i:39;s:14:\"pp-modal-popup\";i:40;s:20:\"pp-offcanvas-content\";i:41;s:14:\"pp-onepage-nav\";i:42;s:8:\"pp-posts\";i:43;s:13:\"pp-price-menu\";i:44;s:16:\"pp-pricing-table\";i:45;s:12:\"pp-promo-box\";i:46;s:15:\"pp-random-image\";i:47;s:9:\"pp-recipe\";i:48;s:20:\"pp-registration-form\";i:49;s:13:\"pp-review-box\";i:50;s:11:\"pp-showcase\";i:51;s:10:\"pp-sitemap\";i:52;s:8:\"pp-table\";i:53;s:20:\"pp-table-of-contents\";i:54;s:14:\"pp-team-member\";i:55;s:23:\"pp-team-member-carousel\";i:56;s:15:\"pp-testimonials\";i:57;s:14:\"pp-tiled-posts\";i:58;s:11:\"pp-timeline\";i:59;s:9:\"pp-toggle\";i:60;s:8:\"pp-video\";i:61;s:16:\"pp-video-gallery\";}', 'auto'),
(409, 'astra-settings', 'a:21:{s:18:\"theme-auto-version\";s:7:\"4.11.15\";s:22:\"is_theme_queue_running\";b:0;s:20:\"headings-font-family\";s:19:\"\'Rubik\', sans-serif\";s:21:\"headings-font-variant\";s:15:\"100,400,600,900\";s:12:\"font-size-h1\";a:6:{s:7:\"desktop\";i:63;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:14:\"font-weight-h2\";s:7:\"inherit\";s:12:\"font-size-h2\";a:6:{s:7:\"desktop\";i:43;s:6:\"tablet\";i:25;s:6:\"mobile\";i:25;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:16:\"body-font-family\";s:21:\"\'Poppins\', sans-serif\";s:14:\"font-size-body\";a:6:{s:7:\"desktop\";i:17;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h3\";a:6:{s:7:\"desktop\";i:31;s:6:\"tablet\";i:20;s:6:\"mobile\";i:20;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h4\";a:6:{s:7:\"desktop\";i:27;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h5\";a:6:{s:7:\"desktop\";i:23;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h6\";a:6:{s:7:\"desktop\";i:19;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:37:\"site-layout-outside-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:25:\"content-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:20:\"global-color-palette\";a:2:{s:7:\"palette\";a:9:{i:0;s:7:\"#4a9924\";i:1;s:7:\"#88ca3f\";i:2;s:7:\"#000b1b\";i:3;s:7:\"#4b4b53\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F0F5FA\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}s:4:\"flag\";b:0;}s:12:\"button-color\";s:25:\"var(--ast-global-color-4)\";s:14:\"button-h-color\";s:25:\"var(--ast-global-color-4)\";s:15:\"button-bg-color\";s:25:\"var(--ast-global-color-0)\";s:17:\"button-bg-h-color\";s:25:\"var(--ast-global-color-1)\";s:20:\"headings-font-weight\";s:3:\"600\";}', 'on'),
(410, 'allowed_astra_notices', 'a:2:{i:0;s:21:\"astra-sites-on-active\";i:1;s:18:\"astra-optin-notice\";}', 'auto'),
(411, 'astra_analytics_installed_time', '1763209883', 'off'),
(3192, 'pp_license_user_action', 'activated', 'auto'),
(3186, 'wbfte_promotion_banner_version', '1.0.1', 'auto'),
(3188, 'wt_u_iew_basic_json_migration_complete', 'yes', 'auto'),
(126, 'theme_mods_twentytwentyfive', 'a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1763209881;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}', 'off'),
(125, 'recovery_keys', 'a:0:{}', 'off'),
(127, '_transient_wp_styles_for_blocks', 'a:2:{s:4:\"hash\";s:32:\"3199e2537fbad380fa221e097719f7c6\";s:6:\"blocks\";a:6:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:0:\"\";s:18:\"core/term-template\";s:0:\"\";s:12:\"core/columns\";s:0:\"\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}', 'on'),
(440, '_elementor_settings_update_time', '1763210073', 'auto'),
(441, 'elementor_cpt_support', 'a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}', 'auto'),
(442, 'elementor_disable_color_schemes', 'yes', 'auto'),
(443, 'elementor_disable_typography_schemes', 'yes', 'auto'),
(444, 'elementor_allow_tracking_last_update', '1763210869', 'auto'),
(445, 'elementor_allow_tracking', 'yes', 'auto'),
(446, 'elementor_google_maps_api_key', '', 'auto'),
(447, 'elementor_pro_recaptcha_site_key', '', 'auto'),
(448, 'elementor_pro_recaptcha_secret_key', '', 'auto'),
(449, 'elementor_pro_recaptcha_v3_site_key', '', 'auto'),
(450, 'elementor_pro_recaptcha_v3_secret_key', '', 'auto'),
(451, 'elementor_pro_recaptcha_v3_threshold', '0.5', 'auto'),
(452, 'elementor_pro_facebook_app_id', '', 'auto'),
(453, 'elementor_pro_mailchimp_api_key', '', 'auto'),
(454, 'elementor_validate_api_data', '', 'auto'),
(455, 'elementor_pro_drip_api_token', '', 'auto'),
(456, 'elementor_pro_activecampaign_api_key', '', 'auto'),
(457, 'elementor_pro_activecampaign_api_url', '', 'auto'),
(458, 'elementor_pro_getresponse_api_key', '', 'auto'),
(459, 'elementor_pro_convertkit_api_key', '', 'auto'),
(460, 'elementor_pro_mailerlite_api_key', '', 'auto'),
(461, 'elementor_typekit-kit-id', '', 'auto'),
(462, 'elementor_font_awesome_pro_kit_id', '', 'auto'),
(463, 'elementor_pro_stripe_test_secret_key', '', 'auto'),
(464, 'elementor_validate_stripe_api_test_secret_key_button', '', 'auto'),
(465, 'elementor_pro_stripe_live_secret_key', '', 'auto'),
(466, 'elementor_validate_stripe_api_live_secret_key_button', '', 'auto'),
(467, 'elementor_stripe_legal_disclaimer', '', 'auto'),
(468, 'elementor_editor_break_lines', '', 'auto'),
(469, 'elementor_unfiltered_files_upload', '1', 'auto'),
(470, 'elementor_google_font', '1', 'auto'),
(471, 'elementor_form-submissions', '', 'auto'),
(472, 'elementor_load_fa4_shim', '', 'auto'),
(473, 'elementor_meta_generator_tag', '', 'auto'),
(474, 'elementor_css_print_method', 'external', 'auto'),
(475, 'elementor_optimized_image_loading', '1', 'auto'),
(476, 'elementor_optimized_gutenberg_loading', '1', 'auto'),
(477, 'elementor_lazy_load_background_images', '1', 'auto'),
(478, 'elementor_local_google_fonts', '0', 'auto'),
(479, 'elementor_element_cache_ttl', '24', 'auto'),
(480, 'elementor_experiment-import-export-customization', 'default', 'auto'),
(481, 'elementor_experiment-container', 'default', 'auto'),
(482, 'elementor_experiment-nested-elements', 'default', 'auto'),
(483, 'elementor_experiment-mega-menu', 'default', 'auto'),
(484, 'elementor_experiment-e_font_icon_svg', 'default', 'auto'),
(485, 'elementor_experiment-additional_custom_breakpoints', 'default', 'auto'),
(486, 'elementor_experiment-e_optimized_markup', 'default', 'auto'),
(487, 'elementor_experiment-theme_builder_v2', 'default', 'auto'),
(493, 'e_editor_counter', '64', 'auto'),
(496, '_transient_timeout__elementor_ab_test_plg_site_mailer_submission', '1770986153', 'off'),
(497, '_transient__elementor_ab_test_plg_site_mailer_submission', '2', 'off'),
(500, '_elementor_element_cache_unique_id', 'c4e92a2da140fd37226ab6a592ed8375', 'auto'),
(502, 'elementor_log', 'a:3:{s:32:\"e6e076c9d7c1040e07469a28b2906569\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2025-11-15 12:37:50\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:55:\"Cannot read properties of null (reading &#039;id&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-11-15 12:37:50\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1763210270\";s:7:\"message\";s:45:\"Cannot read properties of null (reading \'id\')\";s:3:\"url\";s:102:\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.33.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:7:\"1216472\";}s:7:\"\0*\0file\";s:102:\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.33.0\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:7:\"1216472\";}s:32:\"658e0a96ebc132ad35af6980a4cf3c20\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2025-11-15 12:40:19\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:59:\"Cannot read properties of null (reading &#039;config&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-11-15 12:40:19\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1763210419\";s:7:\"message\";s:49:\"Cannot read properties of null (reading \'config\')\";s:3:\"url\";s:138:\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.min.js?ver=3.33.0\";s:4:\"line\";s:1:\"1\";s:6:\"column\";s:4:\"2900\";}s:7:\"\0*\0file\";s:138:\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.min.js?ver=3.33.0\";s:7:\"\0*\0line\";s:1:\"1\";s:9:\"\0*\0column\";s:4:\"2900\";}s:32:\"bed50d1a4418add7020f01455e84eea1\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2025-11-16 07:45:45\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:1888:\"Uncaught WpOrg\\Requests\\Exception\\Http\\Status403: 403 Forbidden in /home/mrarqpph/public_html/secureswipesolutions/wp-content/plugins/elementor/modules/cloud-library/module.php:207\nStack trace:\n#0 /home/mrarqpph/public_html/secureswipesolutions/wp-content/plugins/elementor/modules/cloud-library/module.php(57): Elementor\\Modules\\CloudLibrary\\Module-&gt;is_screenshot_proxy_mode()\n#1 /home/mrarqpph/public_html/secureswipesolutions/wp-content/plugins/elementor/core/base/module.php(86): Elementor\\Modules\\CloudLibrary\\Module-&gt;__construct()\n#2 /home/mrarqpph/public_html/secureswipesolutions/wp-content/plugins/elementor/core/modules-manager.php(64): Elementor\\Core\\Base\\Module::instance()\n#3 /home/mrarqpph/public_html/secureswipesolutions/wp-content/plugins/elementor/includes/plugin.php(703): Elementor\\Core\\Modules_Manager-&gt;__construct()\n#4 /home/mrarqpph/public_html/secureswipesolutions/wp-content/plugins/elementor/includes/plugin.php(621): Elementor\\Plugin-&gt;init_components()\n#5 /home/mrarqpph/public_html/secureswipesolutions/wp-includes/class-wp-hook.php(324): Elementor\\Plugin-&gt;init()\n#6 /home/mrarqpph/public_html/secureswipesolutions/wp-includes/class-wp-hook.php(348): WP_Hook-&gt;apply_filters()\n#7 /home/mrarqpph/public_html/secureswipesolutions/wp-includes/plugin.php(517): WP_Hook-&gt;do_action()\n#8 /home/mrarqpph/public_html/secureswipesolutions/wp-settings.php(727): do_action()\n#9 /home/mrarqpph/public_html/secureswipesolutions/wp-config.php(106): require_once(&#039;/home/mrarqpph/...&#039;)\n#10 /home/mrarqpph/public_html/secureswipesolutions/wp-load.php(50): require_once(&#039;/home/mrarqpph/...&#039;)\n#11 /home/mrarqpph/public_html/secureswipesolutions/wp-blog-header.php(13): require_once(&#039;/home/mrarqpph/...&#039;)\n#12 /home/mrarqpph/public_html/secureswipesolutions/index.php(17): require(&#039;/home/mrarqpph/...&#039;)\n#13 {main}\n  thrown\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:6;s:14:\"\0*\0times_dates\";a:6:{i:0;s:19:\"2025-11-16 07:45:45\";i:1;s:19:\"2025-11-16 07:45:45\";i:2;s:19:\"2025-11-16 07:45:45\";i:3;s:19:\"2025-11-16 07:46:00\";i:4;s:19:\"2025-11-16 07:46:00\";i:5;s:19:\"2025-11-16 07:46:00\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:1827:\"Uncaught WpOrg\\Requests\\Exception\\Http\\Status403: 403 Forbidden in /home/mrarqpph/public_html/secureswipesolutions/wp-content/plugins/elementor/modules/cloud-library/module.php:207\nStack trace:\n#0 /home/mrarqpph/public_html/secureswipesolutions/wp-content/plugins/elementor/modules/cloud-library/module.php(57): Elementor\\Modules\\CloudLibrary\\Module->is_screenshot_proxy_mode()\n#1 /home/mrarqpph/public_html/secureswipesolutions/wp-content/plugins/elementor/core/base/module.php(86): Elementor\\Modules\\CloudLibrary\\Module->__construct()\n#2 /home/mrarqpph/public_html/secureswipesolutions/wp-content/plugins/elementor/core/modules-manager.php(64): Elementor\\Core\\Base\\Module::instance()\n#3 /home/mrarqpph/public_html/secureswipesolutions/wp-content/plugins/elementor/includes/plugin.php(703): Elementor\\Core\\Modules_Manager->__construct()\n#4 /home/mrarqpph/public_html/secureswipesolutions/wp-content/plugins/elementor/includes/plugin.php(621): Elementor\\Plugin->init_components()\n#5 /home/mrarqpph/public_html/secureswipesolutions/wp-includes/class-wp-hook.php(324): Elementor\\Plugin->init()\n#6 /home/mrarqpph/public_html/secureswipesolutions/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()\n#7 /home/mrarqpph/public_html/secureswipesolutions/wp-includes/plugin.php(517): WP_Hook->do_action()\n#8 /home/mrarqpph/public_html/secureswipesolutions/wp-settings.php(727): do_action()\n#9 /home/mrarqpph/public_html/secureswipesolutions/wp-config.php(106): require_once(\'/home/mrarqpph/...\')\n#10 /home/mrarqpph/public_html/secureswipesolutions/wp-load.php(50): require_once(\'/home/mrarqpph/...\')\n#11 /home/mrarqpph/public_html/secureswipesolutions/wp-blog-header.php(13): require_once(\'/home/mrarqpph/...\')\n#12 /home/mrarqpph/public_html/secureswipesolutions/index.php(17): require(\'/home/mrarqpph/...\')\n#13 {main}\n  thrown\";s:4:\"file\";s:109:\"/home/mrarqpph/public_html/secureswipesolutions/wp-content/plugins/elementor/modules/cloud-library/module.php\";s:4:\"line\";i:207;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:109:\"/home/mrarqpph/public_html/secureswipesolutions/wp-content/plugins/elementor/modules/cloud-library/module.php\";s:7:\"\0*\0line\";i:207;}}', 'off');
INSERT INTO `wps_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(605, 'elementor_remote_info_library', 'a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:20:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:20:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:20:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:20:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:20:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:20:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:20:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:20:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:20:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:20:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:20:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:20:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:20:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:20:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:20:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:20:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:20:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:20:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:20:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:20:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:20:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:20:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:20:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:20:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:20:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:20:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:20:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:20:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:20:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:20:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:20:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:20:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:20:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:20:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:20:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:20:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:20:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:20:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:20:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:20:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:20:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:20:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:20:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:20:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:20:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:20:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:20:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:20:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:20:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:20:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:20:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:20:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:20:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:20:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:20:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:20:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:20:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:20:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:20:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:20:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:20:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:20:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:20:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:20:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:20:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:20:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:20:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:20:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:20:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:20:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:20:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:20:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:20:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:20:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:20:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:20:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:20:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:20:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:20:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:20:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:20:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:20:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:20:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:20:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:20:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:20:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:20:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:20:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:20:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:20:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:20:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:20:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:20:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:20:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:20:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:20:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:20:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:20:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:20:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:20:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:20:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:20:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:20:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:20:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:20:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:20:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:20:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:20:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:20:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:20:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:20:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:20:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:20:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:20:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:20:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:20:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:20:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:20:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:20:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:20:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:20:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:20:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:20:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:20:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:20:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:20:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:20:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:20:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:20:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:20:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:20:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:20:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:20:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:20:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:20:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:20:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:20:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:20:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:20:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:20:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:20:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:20:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:20:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:20:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:20:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:20:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:20:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:20:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:20:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:20:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:20:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:20:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:20:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:20:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:20:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:20:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:20:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:20:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:20:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:20:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:20:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:20:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:20:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:20:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:20:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:20:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:20:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:20:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:20:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:20:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:20:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:20:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:20:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:20:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:20:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:20:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:20:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:20:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:20:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:20:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:20:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:20:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:20:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:20:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:20:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:20:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:20:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:20:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:20:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:20:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:20:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:20:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:20:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:20:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:20:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:20:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:20:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:20:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:20:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:20:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:20:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:20:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:20:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:20:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:20:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:20:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:20:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:20:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:20:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:20:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:20:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:20:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:20:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:20:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:20:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:20:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:20:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:20:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:20:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:20:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:20:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:20:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:20:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:20:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:20:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:20:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:20:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:20:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:20:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:20:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:20:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:20:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:20:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:20:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:20:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:20:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:20:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:20:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:20:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:20:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:20:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:20:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:20:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:20:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:20:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:20:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:20:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:20:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:20:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:20:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:20:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:20:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:20:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:20:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:20:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:20:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:20:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:20:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:20:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:20:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:20:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:20:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:20:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:20:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:20:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:20:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:20:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:20:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:20:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:20:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:20:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:20:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:20:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:20:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:20:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:20:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:20:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:20:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:20:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:20:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:20:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:20:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:20:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:20:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:20:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:20:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:20:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:20:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:20:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:20:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:20:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:20:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:20:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:20:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:20:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:20:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:20:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:20:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:20:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:20:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:20:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:20:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:20:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:20:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:20:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:20:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:20:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:20:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:20:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:20:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:20:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:20:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:20:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:20:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:20:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:20:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:20:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:20:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:20:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:20:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:20:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:20:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:20:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:20:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:20:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:20:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:20:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:20:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:20:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:20:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:20:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:20:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:20:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:20:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:20:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:20:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:20:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:20:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:20:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:20:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:20:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:20:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:20:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:20:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:20:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:20:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:20:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:20:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:20:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:20:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:20:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:20:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:20:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:20:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:20:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:20:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:20:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:20:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:20:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:20:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:20:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:20:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:20:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:20:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:20:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:20:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:20:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:20:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:20:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:20:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:20:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:20:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:20:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:20:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:20:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:20:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:20:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:20:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:20:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:20:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:20:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:20:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:20:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:20:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:20:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:20:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:20:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:20:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:20:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:20:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:20:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:20:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:20:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:20:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:20:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:20:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:20:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:20:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:20:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:20:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:20:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:20:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:20:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:20:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:20:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:20:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:20:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:20:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:20:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:20:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:20:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:20:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:20:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:20:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:20:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:20:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:20:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:20:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:20:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:20:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:20:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:20:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:20:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:20:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:20:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:20:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:20:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:20:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:20:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:20:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:20:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:20:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:20:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:20:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:20:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:20:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:20:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:20:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:20:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:20:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:20:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:20:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:20:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:20:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:20:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:20:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:20:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:20:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:20:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:20:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:20:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:20:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:20:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:20:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:20:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:20:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:20:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:20:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:20:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:20:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:20:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:20:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:20:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:20:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:20:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:20:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:20:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:20:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:20:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:20:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:20:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:20:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:20:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:20:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:20:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:20:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:20:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:20:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:20:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:20:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:20:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:20:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:20:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:20:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:20:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:20:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:20:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:20:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:20:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:20:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:20:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:20:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:20:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:20:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:20:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:20:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:20:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:20:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:20:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:20:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:20:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:20:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:20:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:20:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:20:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:20:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:20:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:20:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:20:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:20:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:20:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:20:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:20:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:20:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:20:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:20:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:20:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:20:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:20:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:20:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:20:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:20:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:20:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:20:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:20:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:20:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:20:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:20:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:20:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:20:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:20:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:20:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:20:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:20:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:20:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:20:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:20:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:20:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:20:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:20:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:20:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:20:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:20:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:20:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:20:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:20:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:20:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:20:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:20:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:20:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:20:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:20:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:20:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:20:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:20:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:20:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:20:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:20:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:20:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:20:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:20:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:20:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:20:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:20:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:20:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:20:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:20:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:20:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:20:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:20:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:20:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:20:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:20:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:20:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:20:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:20:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:20:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:20:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:20:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:20:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:20:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:20:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:20:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:20:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:20:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:20:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:20:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:20:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:20:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:20:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:20:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:20:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:20:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:20:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:20:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:20:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:20:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:20:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:20:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:20:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:20:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:20:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:20:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:20:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:20:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:20:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:20:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:20:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:20:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:20:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:20:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:20:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:20:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:20:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:20:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:20:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:20:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:20:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:20:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:20:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:20:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:20:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:20:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:20:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:20:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:20:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:20:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:20:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:20:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:20:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:20:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:20:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:20:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:20:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:20:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:20:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:20:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:20:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:20:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:20:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:20:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:20:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:20:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:20:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:20:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:20:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:20:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:20:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:20:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:20:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:20:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:20:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:20:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:20:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:20:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:20:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:20:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:20:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:20:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:20:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:20:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:20:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:20:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:20:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:20:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:20:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:20:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:20:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:20:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:20:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:20:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:20:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:20:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:20:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:20:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:20:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:20:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:20:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:20:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:20:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:20:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:20:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:20:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:20:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:20:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:20:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:20:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:20:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:20:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:20:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:20:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:20:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:20:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:20:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:20:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:20:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:20:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:20:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:20:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:20:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:20:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:20:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:20:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:20:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:20:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:20:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:20:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:20:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:20:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:20:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:20:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:20:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:20:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:20:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:20:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:20:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:20:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:20:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:20:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:20:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:20:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:20:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:20:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:20:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:20:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:20:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:20:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:20:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:20:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:20:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:20:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:20:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:20:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:20:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:20:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:20:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:20:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:20:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:20:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:20:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:20:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:20:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:20:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:20:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:20:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:20:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:20:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:20:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:20:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:20:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:20:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:20:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:20:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:20:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:20:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:20:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:20:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:20:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:20:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:20:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:20:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:20:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:20:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:20:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:20:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:20:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:20:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:20:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:20:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:20:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:20:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:20:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:20:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:20:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:20:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:20:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:20:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:20:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:20:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:20:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:20:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:20:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:20:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:20:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:20:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:20:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:20:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:20:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:20:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:20:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:20:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:20:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:20:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:20:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:20:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:20:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:20:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:20:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:20:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:20:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:20:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:20:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:20:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:20:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:20:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:20:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:20:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:20:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:20:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:20:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:20:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:20:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:20:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:20:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:20:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:20:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:20:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:20:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:20:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:20:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:20:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:20:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:20:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}', 'off');
INSERT INTO `wps_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(3508, 'db_upgraded', '1', 'auto'),
(151, '_site_transient_wp_plugin_dependencies_plugin_data', 'a:0:{}', 'off'),
(152, 'recently_activated', 'a:2:{s:35:\"litespeed-cache/litespeed-cache.php\";i:1764352776;s:101:\"users-customers-import-export-for-wp-woocommerce/users-customers-import-export-for-wp-woocommerce.php\";i:1764352755;}', 'off'),
(180, 'elementor_pro_version', '3.25.4', 'auto'),
(181, 'elementor_pro_install_history', 'a:1:{s:6:\"3.25.4\";i:1763209780;}', 'auto'),
(158, 'elementor_active_kit', '6', 'auto'),
(159, 'elementor_font_display', 'swap', 'auto'),
(162, 'elementor_landing_pages_activation', '0', 'auto'),
(163, 'elementor_checklist', '{\"last_opened_timestamp\":1763210399,\"first_closed_checklist_in_editor\":false,\"is_popup_minimized\":false,\"steps\":{\"add_logo\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"set_fonts_and_colors\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"create_pages\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"setup_header\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"assign_homepage\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"setup_header_pro\":{\"is_marked_completed\":false,\"is_immutable_completed\":false}},\"should_open_in_editor\":true}', 'auto'),
(164, 'elementor_version', '3.33.0', 'auto'),
(165, 'elementor_install_history', 'a:1:{s:6:\"3.33.0\";i:1763209729;}', 'auto'),
(166, 'elementor_events_db_version', '1.0.0', 'off'),
(168, '_elementor_ab_testing_data', 'a:2:{s:7:\"timeout\";i:1763282732;s:5:\"value\";s:274:\"[{\"coreOnboarding\":{\"emphasizeConnectBenefits101\":false,\"embedConnectInOnboarding102\":false,\"onboardingStartsWithLogin103\":false,\"offerThemeChoicesHelloBiz201\":false,\"emphasizeThemeValueAudience202\":false,\"updateCopyVisuals401\":false,\"reduceHierarchyBlankOption402\":false}}]\";}', 'off'),
(169, 'elementor_onboarded', '1', 'auto'),
(170, '_elementor_installed_time', '1763209734', 'auto'),
(171, 'elementor_connect_site_key', '92d0ae96cbccb2c8b2d2276200da005b', 'auto'),
(172, 'elementor_remote_info_feed_data', 'a:3:{i:0;a:5:{s:5:\"title\";s:76:\"Introducing Elementor 3.32: Transitions, Transform, Size Variables, and More\";s:7:\"excerpt\";s:250:\"Elementor 3.32 is here, accelerating Editor V4 Alpha with transform controls and layered transitions, system-wide Size Variables and streamlined class management. This release empowers you to build more consistent, dynamic, and professional websites.\";s:7:\"created\";i:1759243152;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:138:\"https://elementor.com/blog/elementor-332-v4-transform-transitions/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:70:\"Introducing Elementor 3.31: New Editor V4 Variables, Filters, and More\";s:7:\"excerpt\";s:294:\"Elementor 3.31 is here, pushing Editor V4 forward with powerful design system enhancements and modern visual styling tools. From Variables and Filters to smarter editing workflows and semantic markup, this version makes it easier than ever to design beautiful, performant, and accessible sites.\";s:7:\"created\";i:1755094220;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:140:\"https://elementor.com/blog/elementor-331-v4-alpha-variables-filters/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:67:\"What Is an MCP? The AI Breakthrough Web Creators Shouldn’t Ignore\";s:7:\"excerpt\";s:143:\"Discover how Model Context Protocol (MCP) is shaping AI-tool interaction and redefining how pro web creators build, manage, and scale websites.\";s:7:\"created\";i:1754310811;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:130:\"https://elementor.com/blog/mcp-explained-for-web-creators/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}', 'off'),
(177, 'finished_updating_comment_type', '1', 'auto'),
(182, 'widget_elementor-library', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(183, '_elementor_pro_installed_time', '1763209780', 'auto'),
(184, 'elementor_submissions_db_version', '5', 'auto'),
(380, '_elementor_pro_api_requests_lock', 'a:2:{s:11:\"get_version\";i:1764789304;s:16:\"get_license_data\";i:1764352484;}', 'auto'),
(3190, 'wt_iew_admin_modules', 'a:3:{s:7:\"history\";i:1;s:6:\"export\";i:1;s:6:\"import\";i:1;}', 'auto'),
(3205, '_new_bb_banner', 'a:3:{s:9:\"dismissed\";b:0;s:12:\"dismissed_at\";i:0;s:11:\"using_since\";i:1764352820;}', 'auto'),
(3206, 'bmi_gdrive_banner_dismissed', '1', 'auto'),
(3207, 'BMI::STORAGE::LOCAL::PATH', '/home/mrarqpph/public_html/secureswipesolutions/wp-content/backup-migration-XJwSChRfpT', 'auto'),
(3209, '_transient_bmi_latest_size_plugins', '94592984', 'on'),
(3211, '_transient_bmi_latest_size_themes', '27185440', 'on'),
(3212, '_transient_bmi_latest_size_contents_others', '6856', 'on'),
(3213, '_transient_bmi_latest_size_wordpress', '60359685', 'on'),
(3214, '_transient_bmi_latest_size_database', '50973485', 'on'),
(3215, 'bmi_required_space', '191784224', 'auto');
INSERT INTO `wps_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(3515, 'elementor_pro_remote_info_api_data_3.25.4', 'a:2:{s:7:\"timeout\";i:1764832505;s:5:\"value\";s:249933:\"{\"stable_version\":\"3.33.2\",\"last_updated\":\"2025-12-03 12:53:02\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:233823:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.33.2 - 2025-12-03<\\/h4>\\n<ul>\\n<li>Fix: Incorrect status shown for Custom Code, Fonts, and Icons after importing a Website Template<\\/li>\\n<li>Fix: Display Conditions window appears empty in the editor<\\/li>\\n<\\/ul>\\n<h4>3.33.1 - 2025-11-11<\\/h4>\\n<ul>\\n<li>Fix: Styles not loading correctly in Custom Fonts and Custom Icons admin screens (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/33396\\\">#33396<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.33.0 - 2025-11-10<\\/h4>\\n<ul>\\n<li>New: Introducing Custom CSS for element-level styling with full isolation and responsive control - Editor V4<\\/li>\\n<li>New: Introducing media save to cloud in Website Templates, enabling users to store media assets directly in the cloud for easier access and management.<\\/li>\\n<li>Tweak: Added support for Post Excerpt dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Internal URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Post Terms dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Shortcode dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Popup dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Off-Canvas dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Lightbox dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Add To Cart dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Archive Title dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for the Email Contact URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for reduced-motion preferences in Flip Box widget<\\/li>\\n<li>Tweak: Updated minimum supported versions for Chrome, Firefox, and Safari<\\/li>\\n<li>Tweak: Updated Notes button location in the Editor Top Bar<\\/li>\\n<\\/ul>\\n<h4>3.32.3 - 2025-10-21<\\/h4>\\n<ul>\\n<li>Fix: Website Template fails to apply when Custom Code or Custom Icons are included<\\/li>\\n<\\/ul>\\n<h4>3.32.2 - 2025-09-29<\\/h4>\\n<ul>\\n<li>Fix: Exported taxonomies are not displayed correctly on the summary page in Website Templates export<\\/li>\\n<li>Fix: Certain taxonomies are not exported as expected in Website Templates export<\\/li>\\n<\\/ul>\\n<h4>3.32.1 - 2025-09-16<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder fails to load when containers are disabled<\\/li>\\n<li>Fix: Popup and single product templates not imported or exported as expected<\\/li>\\n<\\/ul>\\n<h4>3.32.0 - 2025-09-15<\\/h4>\\n<ul>\\n<li>New: Introducing Size Variables to store and reuse numeric values across spacing, typography, layout, and borders - Editor V4<\\/li>\\n<li>New: Introducing granular Transitions with property-level control for advanced micro-animations - Editor V4<\\/li>\\n<li>New: Added granular content selection for Website Templates import and export, including pages, menus, post types, and taxonomies<\\/li>\\n<li>Tweak: Enhanced accessibility of background images in Slides widget with proper aria attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23543\\\">#23543<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/31063\\\">#31063<\\/a>)<\\/li>\\n<li>Tweak: Added REST API support for the Custom Code feature<\\/li>\\n<li>Tweak: Moved Background control from Content tab to Style tab in Flip Box widget<\\/li>\\n<li>Tweak: Removed SVG icons from the accessibility tree in Share Buttons widget<\\/li>\\n<li>Tweak: Removed dropdown indicator icons from the accessibility tree in WordPress Menu widget<\\/li>\\n<li>Fix: PHP 8.4 deprecation notices when running with <code>WP_DEBUG<\\/code> enabled<\\/li>\\n<li>Fix: Reduced-motion preferences are not applied to Animated Headline widget<\\/li>\\n<li>Fix: Reduced-motion preferences are not applied in Motion Effects<\\/li>\\n<li>Fix: Added required PHP and WordPress versions to the plugin header<\\/li>\\n<\\/ul>\\n<h4>3.31.3 - 2025-09-08<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in WordPress Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.31.2 - 2025-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Improved release version functionality<\\/li>\\n<\\/ul>\\n<h4>3.31.1 - 2025-08-06<\\/h4>\\n<ul>\\n<li>Tweak: Updated <code>form-data<\\/code> package version<\\/li>\\n<\\/ul>\\n<h4>3.31.0 - 2025-08-05<\\/h4>\\n<ul>\\n<li>New: Introducing Attributes - add custom HTML attributes to elements for advanced control - Editor V4<\\/li>\\n<li>Tweak: Optimized Custom Code styles by removing redundant RTL file<\\/li>\\n<li>Tweak: Improved performance by loading ribbon styles only when used in Call to Action and Price Table widgets<\\/li>\\n<li>Tweak: Improved semantic markup structure for header and footer documents<\\/li>\\n<li>Tweak: Reorganized design controls in Animated Headline widget<\\/li>\\n<li>Tweak: Reorganized design controls in Blockquote widget<\\/li>\\n<li>Tweak: Reorganized design controls in Countdown widget<\\/li>\\n<li>Tweak: Replaced SASS mixins and functions with native CSS logical properties<\\/li>\\n<li>Fix: Empty headers are rendered in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28167\\\">#28167<\\/a>)<\\/li>\\n<li>Fix: <code>TypeError<\\/code> bug in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.30.1 - 2025-07-22<\\/h4>\\n<ul>\\n<li>Security Fix: Improved content sanitization in multiple widgets<\\/li>\\n<li>Fix: UI issue in Hotspot widget when Optimized Markup experiment is enabled<\\/li>\\n<li>Fix: Taxonomy filter not working in the Editor when Optimized Markup experiment is enabled<\\/li>\\n<\\/ul>\\n<h4>3.30.0 - 2025-07-01<\\/h4>\\n<ul>\\n<li>New: Introduced Full Website Templates in the Cloud - export, manage, and reuse full site kits across all your websites from one place<\\/li>\\n<li>Tweak: Activated &quot;Optimized Markup&quot; feature on new sites<\\/li>\\n<li>Tweak: Activated &quot;Menu&quot; feature on new sites<\\/li>\\n<li>Tweak: Improved error handling for Theme Builder display conditions<\\/li>\\n<li>Tweak: Added styling controls to Post Excerpt widget<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> and <code>aria-label<\\/code> attributes Post Navigation widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Form widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Login widget<\\/li>\\n<li>Tweak: Arranged content as lists in Portfolio and Posts widgets<\\/li>\\n<li>Tweak: Added Box Shadow and Text Shadow controls in Countdown widget<\\/li>\\n<li>Tweak: Moved image resolution control to content tab in Price List widget<\\/li>\\n<li>Tweak: Renamed and reorganized style sections in Price List widget<\\/li>\\n<li>Tweak: Added conditional logic to controls in Price Table widget<\\/li>\\n<li>Tweak: Grouped layout controls under list section in Price List widget<\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.6<\\/li>\\n<li>Fix: Inline font icons support doesn\'t work in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24367\\\">#24367<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18343\\\">#18343<\\/a>)<\\/li>\\n<li>Fix: Page Title condition doesn\'t work on child pages in Widget Display Conditions<\\/li>\\n<li>Fix: Editor users with &quot;Access to edit content only&quot; are able to delete elements<\\/li>\\n<li>Fix: Links are not crawlable in Video Playlist widget<\\/li>\\n<li>Fix: Uses hardcoded admin fonts in Video Playlist widget<\\/li>\\n<li>Fix: Editor freezes when the Form widget is used with a high PHP upload size limit<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled in Slides widget<\\/li>\\n<li>Fix: Plugin dependency not enforced in Elementor Pro<\\/li>\\n<li>Fix: Console shows deprecation warning in Global Widgets<\\/li>\\n<\\/ul>\\n<h4>3.29.2 - 2025-06-04<\\/h4>\\n<ul>\\n<li>Tweak: Added selectors to Menu widget for compatibility with Optimized Markup experiment<\\/li>\\n<\\/ul>\\n<h4>3.29.1 - 2025-05-28<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Price Table widget<\\/li>\\n<\\/ul>\\n<h4>3.29.0 - 2025-05-19<\\/h4>\\n<ul>\\n<li>New: Introduced Cloud Templates - save, manage, and reuse your templates across all your sites from a single cloud library<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> attributes in Share Buttons widget<\\/li>\\n<li>Tweak: Improved accessibility by grouping content with <code>role=region<\\/code> in the Video Playlist widget<\\/li>\\n<li>Fix: Focus color is not applied correctly for accessibility in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24239\\\">#24239<\\/a>)<\\/li>\\n<li>Fix: Common scripts loaded late when using the Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.28.4 - 2025-05-05<\\/h4>\\n<ul>\\n<li>Fix: Empty results appeared on the frontend when using the Taxonomy Filter with the \'Avoid Duplicates\' option in Loop Grid widget<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled and the Optimized Markup experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.28.3 - 2025-04-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved sidebar navigation flow on the Elementor Home screen<\\/li>\\n<\\/ul>\\n<h4>3.28.2 - 2025-03-30<\\/h4>\\n<ul>\\n<li>Fix: Default Elementor animation shown for logged-out users when using an &quot;External URL&quot; source in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.28.1 - 2025-03-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline and Form widgets<\\/li>\\n<\\/ul>\\n<h4>3.28.0 - 2025-03-17<\\/h4>\\n<ul>\\n<li>Tweak: Ensured File Upload field styles are overridden by global styles in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11651\\\">#11651<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17223\\\">#17223<\\/a>)<\\/li>\\n<li>Tweak: Updated Scroll Snap description to clarify incompatibility with animations and motion effects<\\/li>\\n<li>Tweak: Prevented special characters from being encoded in the email subject field in Form widget<\\/li>\\n<li>Tweak: Loaded module styles within the module instead of registering them in <code>plugin.php<\\/code><\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.5<\\/li>\\n<li>Tweak: Improved keyboard accessibility for menus in Editor Top Bar<\\/li>\\n<li>Tweak: Made the edit button accessible in the Template widget<\\/li>\\n<li>Tweak: Optimized Form widget performance by caching field assets <code>using get_style_depends()<\\/code> and <code>get_script_depends()<\\/code> methods<\\/li>\\n<li>Tweak: Added Text Shadow control in Testimonial Carousel, Call to Action and Animated Headline widgets<\\/li>\\n<li>Fix: Button icon alignment breaks when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16077\\\">#16077<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16511\\\">#16511<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17692\\\">#17692<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17922\\\">#17922<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19253\\\">#19253<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19370\\\">#19370<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21236\\\">#21236<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21844\\\">#21844<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28080\\\">#28080<\\/a>)<\\/li>\\n<li>Fix: Dropdown caret color did not follow menu item color when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17500\\\">#17500<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18466\\\">#18466<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21664\\\">#21664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24929\\\">#24929<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28064\\\">#28064<\\/a>)<\\/li>\\n<li>Fix: Page doesn\'t scroll up when a coupon error notice appears in Checkout widget<\\/li>\\n<\\/ul>\\n<h4>3.27.7 - 2025-03-13<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.27.6 - 2025-03-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Template Condition<\\/li>\\n<\\/ul>\\n<h4>3.27.5 - 2025-03-03<\\/h4>\\n<ul>\\n<li>Fix: The <code>wp_trigger_error<\\/code> function causes the site to crash instead of triggering a warning when used with ACF text<\\/li>\\n<\\/ul>\\n<h4>3.27.4 - 2025-02-16<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Screenshots module<\\/li>\\n<li>Security Fix: Improved code security enforcement in Query control<\\/li>\\n<li>Fix: ACF <code>true_false<\\/code> field causing a fatal error when used as a dynamic tag with third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/30170\\\">#30170<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.27.3 - 2025-02-06<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Stripe Button widget<\\/li>\\n<\\/ul>\\n<h4>3.27.2 - 2025-02-03<\\/h4>\\n<ul>\\n<li>Fix: Value type configuration issue causing errors when using ACF<\\/li>\\n<li>Fix: Hide content on responsive breakpoint option is not working on WordPress Menu widget when Optimized Markup experiment is activated<\\/li>\\n<\\/ul>\\n<h4>3.27.1 - 2025-01-27<\\/h4>\\n<ul>\\n<li>Tweak: Increased the number of items allowed in Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<li>Security Fix: Improved code security enforcement in Global widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Admin settings<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Empty custom fields are missing in the Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<\\/ul>\\n<h4>3.27.0 - 2025-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Removed the <code>elementor-widget-container<\\/code> div from the Menu, Loop, Table of Contents, Form, and Hotspot widgets as part of the Optimized Markup experiment to improve HTML structure<\\/li>\\n<li>Tweak: Reduced DOM size by optimizing the submit button markup in Search widget<\\/li>\\n<li>Tweak: Moved style loading to the head instead of the footer to improve CLS<\\/li>\\n<li>Tweak: Enabled conditional loading of Swiper.js based on widget dependencies to reduce unnecessary assets and improve page load times<\\/li>\\n<li>Tweak: Standardized navigation elements like arrows and bullets across all carousel and slider widgets for improved accessibility<\\/li>\\n<li>Tweak: Improved accessibility when the submit button has only an icon and no text in Search widget<\\/li>\\n<li>Tweak: Removed <code>load_plugin_textdomain()<\\/code> function from Elementor Pro<\\/li>\\n<\\/ul>\\n<h4>3.26.3 - 2025-01-07<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Search widget<\\/li>\\n<li>Fix: Height issues cause slideshow thumbnails to display incorrectly in Media Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29663\\\">#29663<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.2 - 2024-12-22<\\/h4>\\n<ul>\\n<li>Fix: Menu items are not clickable in various scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29191\\\">#29191<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.1 - 2024-12-17<\\/h4>\\n<ul>\\n<li>Fix: Restore deprecated <code>Plugin::enqueue_styles()<\\/code> function to avoid errors with 3rd party plugins<\\/li>\\n<\\/ul>\\n<h4>3.26.0 - 2024-12-16<\\/h4>\\n<ul>\\n<li>New: Introducing dynamic content support for Off-canvas in Loop Grid widget templates - enabling seamless display of additional content dynamically (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29049\\\">#29049<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28935\\\">#28935<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7106\\\">#7106<\\/a>)<\\/li>\\n<li>New: AdBlock Detection trigger for Popups - display targeted popups for visitors using ad blockers<\\/li>\\n<li>New: Added Reload Page link action for Dynamic Tags<\\/li>\\n<li>Tweak: Added &quot;Space Between Dots&quot; control to Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2526\\\">#2526<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3277\\\">#3277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21697\\\">#21697<\\/a>)<\\/li>\\n<li>Tweak: Replaced hidden <code>elementor-screen-only<\\/code> div with <code>aria-label<\\/code> attributes<\\/li>\\n<li>Tweak: Removed <code>elementor-widget-container<\\/code> div from Elementor widgets as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Optimize popup styling by loading it only when necessary<\\/li>\\n<li>Tweak: Updated Gap between slides control to support only PX units in Carousel widget<\\/li>\\n<li>Tweak: Removed the dependency between the Tabs handler and the Menu handler<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> in Carousel widgets<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=carousel<\\/code> to carousel wrapper<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=slide<\\/code> to slide wrapper<\\/li>\\n<li>Tweak: Optimized carousel widgets markup as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Updated minimum required Safari version to 15.5<\\/li>\\n<li>Tweak: Facebook widgets are no longer supported on mobile due to Facebook functionality changes<\\/li>\\n<li>Fix: Motion Effects sticky feature is not working when Scroll Snap is enabled<\\/li>\\n<li>Fix: Custom Image Resolution option is not working in Gallery widget<\\/li>\\n<li>Fix: \'Reading Settings\' unexpectedly reduces the number of posts displayed when using the Archive with Pagination setting<\\/li>\\n<li>Fix: Step Form does not scroll to the top when the first field is not an input field in Form widget<\\/li>\\n<li>Fix: Display Condition feature is available without an active Elementor license in Floating Elements<\\/li>\\n<li>Fix: Background options of Flip Box in Loop Grid widget are not working when images are added using ACF Dynamic Tags<\\/li>\\n<li>Fix: Dropdown icon in the Select field of the Form widget is cut off when the Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Incompatibility between Form widget and WPML when using Nested Elements<\\/li>\\n<li>Fix: Performance issues when changing the title name in the Menu widget<\\/li>\\n<li>Fix: Warnings appear when Element Caching is set to Inactive in Carousel widgets<\\/li>\\n<li>Fix: Swiper styling missing from Lightbox inside Gallery widgets<\\/li>\\n<\\/ul>\\n<h4>3.25.5 - 2024-12-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Popup overlay shown for non-logged users even when disabled<\\/li>\\n<\\/ul>\\n<h4>3.25.4 - 2024-11-20<\\/h4>\\n<ul>\\n<li>Tweak: Improved Global Widget loading method to enhance performance<\\/li>\\n<\\/ul>\\n<h4>3.25.3 - 2024-11-13<\\/h4>\\n<ul>\\n<li>Fix: Nested Elements are activated even when the Container experiment is inactive<\\/li>\\n<\\/ul>\\n<h4>3.25.2 - 2024-11-03<\\/h4>\\n<ul>\\n<li>Fix: Styling issues affecting popup layout when using a Dynamic Tag to open the popup<\\/li>\\n<li>Fix: Image captions are not displaying for non-logged-in users in Media Carousel widget<\\/li>\\n<li>Fix: Custom Add to Cart widget with Quantity enabled causes critical error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29159\\\">#29159<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.25.1 - 2024-10-31<\\/h4>\\n<ul>\\n<li>Fix: Multiple Custom Add to Cart widgets on the same page are adding the same product<\\/li>\\n<\\/ul>\\n<h4>3.25.0 - 2024-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added pagination functionality to the Live Results in Search widget<\\/li>\\n<li>Tweak: Added Anchor Offset control to allow precise positioning when scrolling to anchor links on the page<\\/li>\\n<li>Tweak: Load motion effects styles only when they are in use<\\/li>\\n<li>Tweak: Load sticky styles only when they are in use<\\/li>\\n<li>Tweak: Load popup styles only when they are in use<\\/li>\\n<li>Tweak: Load theme builder styles only when they are in use<\\/li>\\n<li>Tweak: Load transition styles for Call to Action and Gallery widgets only when they are in use<\\/li>\\n<li>Tweak: Load styles for Form widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for WooCommerce widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Theme Elements widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Carousel widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Pricing widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Floating Elements separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Link in Bio widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load minified CSS in the Loop Builder\'s Call to Action button in the Editor<\\/li>\\n<li>Tweak: Removed &quot;Payments&quot; module styles<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Payapl widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Stripe widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Merged &quot;Form Submissions&quot; feature into the version and moved it to the Advanced tab<\\/li>\\n<li>Tweak: Merged &quot;Display Conditions&quot; into the version<\\/li>\\n<li>Fix: Missing translation string for the empty message in the Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27580\\\">#27580<\\/a>)<\\/li>\\n<li>Fix: Local Storage and Session Storage were being used even when popups were not in use (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7151\\\">#7151<\\/a>)<\\/li>\\n<li>Fix: Masonry layout is not working when pagination is set to &quot;Load More&quot; or &quot;Infinite Scroll&quot; in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23684\\\">#23684<\\/a>)<\\/li>\\n<li>Fix: Extra gap between widgets on the frontend when using Off-canvas widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27706\\\">#27706<\\/a>)<\\/li>\\n<li>Fix: Pagination and custom queries did not work when the Posts Widget was saved as a Global Widget or used via shortcode<\\/li>\\n<li>Fix: Lightbox videos are missing controls and displayed at the wrong size in Media Carousel widget<\\/li>\\n<li>Fix: Pagination options with Individual Pagination not working as expected in Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Justified or Masonry layouts for the Pro Gallery would not display images on the frontend when inserted via nested tabs<\\/li>\\n<li>Fix: Error issue in the Loop Grid widget when used in theme parts with the Taxonomy Filter<\\/li>\\n<li>Fix: Removed the focus ring after clicking to open the Off Canvas inside the Editor<\\/li>\\n<li>Fix: Background gradient colors from the dynamic color tag values are not rendering on the frontend<\\/li>\\n<li>Fix: Excessive database requests generated by the Loop Grid widget<\\/li>\\n<li>Fix: Colors from Dynamic Tags were not rendered on the frontend<\\/li>\\n<li>Fix: Display issue in the Menu widget caused by the \'Native Intersection Observer API<\\/li>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget<\\/li>\\n<li>Fix: Content Width control inside the Mega Menu is displaying an empty value<\\/li>\\n<\\/ul>\\n<h4>3.24.4 - 2024-10-09<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<\\/ul>\\n<h4>3.24.3 - 2024-10-01<\\/h4>\\n<ul>\\n<li>Fix: Floating Elements template not loading when Single Page template is set with All Singular condition<\\/li>\\n<li>Fix: Form field styles not loading properly in various scenarios<\\/li>\\n<\\/ul>\\n<h4>3.24.2 - 2024-09-18<\\/h4>\\n<ul>\\n<li>Fix: Icons not displaying when Inline SVG Icons experiment is active in Link In Bio widgets and Floating Elements<\\/li>\\n<\\/ul>\\n<h4>3.24.1 - 2024-09-12<\\/h4>\\n<ul>\\n<li>Fix: Widget styles not loading correctly on front causing alignment inconsistencies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28676\\\">#28676<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.24.0 - 2024-09-10<\\/h4>\\n<ul>\\n<li>New: Introducing support for Variable Fonts - allowing for more dynamic and flexible text styling (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6703\\\">#6703<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11333\\\">#11333<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19277\\\">#19277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25485\\\">#25485<\\/a>)<\\/li>\\n<li>Tweak: Added \'Structure\' indication for widgets with Display Conditions applied (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28027\\\">#28027<\\/a>)<\\/li>\\n<li>Tweak: Added a new option for setting the live search results width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28280\\\">#28280<\\/a>)<\\/li>\\n<li>Tweak: Improved Honeypot field functionality in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28480\\\">#28480<\\/a>)<\\/li>\\n<li>Tweak: Added options to \'Copy\', \'Paste\', and \'Clear\' Display Conditions in Context Menu<\\/li>\\n<li>Tweak: Improved performance of the Menu widget when using Dynamic Tags in the URL field<\\/li>\\n<li>Tweak: Improved performance when using Dynamic Tags in Nested Elements<\\/li>\\n<li>Tweak: Added the option for users to disable Akismet for specific Elementor forms<\\/li>\\n<li>Tweak: Adjusted URL structure when presenting the Search Archive page in Search widget<\\/li>\\n<li>Tweak: Added the \'Create Template\' button in Search widget<\\/li>\\n<li>Tweak: Added an option to enable the \'Loader\' animation while live results are loading in Search widget<\\/li>\\n<li>Tweak: Load share buttons compatibility styles only when they are in use<\\/li>\\n<li>Tweak: Load dialog styles only when they are in use<\\/li>\\n<li>Tweak: Load global widget styles only during Editor preview<\\/li>\\n<li>Tweak: Conditionally load widget styles only when the widgets are used<\\/li>\\n<li>Tweak: Load styles for CTA hover animations only when they are in use<\\/li>\\n<li>Tweak: Load notes styles only when the WordPress Toolbar is displayed<\\/li>\\n<li>Tweak: Split <code>animations.min.css<\\/code> into multiple CSS files and load them conditionally<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Stable status<\\/li>\\n<li>Tweak: Merged Taxonomy Filter feature into the version<\\/li>\\n<li>Tweak: Merged Search feature into the version<\\/li>\\n<li>Tweak: Added a note to \'Current Query\' explaining the impact of WordPress settings on pagination within Archives<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for the Off-Canvas widget<\\/li>\\n<li>Fix: Manual Selection option is not excluding sticky posts in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18689\\\">#18689<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23331\\\">#23331<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28179\\\">#28179<\\/a>)<\\/li>\\n<li>Fix: Template ID does not change according to the imported Loop Item (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21404\\\">#21404<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22202\\\">#22202<\\/a>)<\\/li>\\n<li>Fix: \'Editing Mode\' for the Off-canvas was not functioning correctly in certain scenarios<\\/li>\\n<li>Fix: Added definition to <code>clear_custom_image_sizes<\\/code> hook to prevent edge case issues<\\/li>\\n<li>Fix: Flickering issue with search result buttons when closing results using the keyboard escape key in Search widget<\\/li>\\n<li>Fix: Theme Style settings for buttons were overriding the text styling in Search widget<\\/li>\\n<li>Fix: Nesting menu inside another menu causes functionality issues in Menu widget<\\/li>\\n<li>Fix: Error when using array as custom fields value in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.23.3 - 2024-08-05<\\/h4>\\n<ul>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28194\\\">#28194<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.23.2 - 2024-07-29<\\/h4>\\n<ul>\\n<li>Fix: Horizontal scroll bar appearing on the page when using Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28087\\\">#28087<\\/a>)<\\/li>\\n<li>Fix: Dropdown area disappearing in certain scenarios in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.23.1 - 2024-07-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in link URL<\\/li>\\n<\\/ul>\\n<h4>3.23.0 - 2024-07-15<\\/h4>\\n<ul>\\n<li>New: Search Widget with Live Results - Display live search results as visitors type into the search box, enhancing user experience and engagement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27664\\\">#27664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24931\\\">#24931<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21459\\\">#21459<\\/a>)<\\/li>\\n<li>Tweak: Renamed <code>width<\\/code> to <code>Min width<\\/code> and added <code>Max width<\\/code> control to Hotspot tooltips (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18930\\\">#18930<\\/a>)<\\/li>\\n<li>Tweak: Applied a logical DOM order to the Mega Menu widget to improve accessibility<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for WordPress Menu widget<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for Menu widget<\\/li>\\n<li>Tweak: Added a bottom option to the Image Position control in Call to Action widget<\\/li>\\n<li>Fix: Missing version string in included CSS query string when Improved CSS Loading is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21879\\\">#21879<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23821\\\">#23821<\\/a>)<\\/li>\\n<li>Fix: Form submission icon message does not display correctly when Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Save and Close button position issues in the conditions screen in Theme Builder.<\\/li>\\n<li>Fix: Focus appears on the first element when using the mouse to open Off-Canvas <\\/li>\\n<li>Fix: Links to Elementor Settings are broken in various locations<\\/li>\\n<li>Fix: Conditions field not showing all relevant conditions in Theme Builder<\\/li>\\n<li>Fix: Off-Canvas flickering in sticky containers with exit animations triggered by sticky effects<\\/li>\\n<\\/ul>\\n<h4>3.22.1 - 2024-06-24<\\/h4>\\n<ul>\\n<li>Fix: Styling of Global widgets not loading when Element Caching experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27704\\\">#27704<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.22.0 - 2024-06-16<\\/h4>\\n<ul>\\n<li>New: Introducing Off-Canvas widget - create engaging and creative layers triggered by a link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6225\\\">#6225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21769\\\">#21769<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25770\\\">#25770<\\/a>)<\\/li>\\n<li>Tweak: Added option to remove \'User IP\' and \'User Agent\' from the form submissions metadata (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14285\\\">#14285<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>waypoints.js<\\/code> library with the native Intersection Observer API<\\/li>\\n<li>Tweak: Extended Alignment and Position capabilities in Form widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Flip Box widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Call to Action widget<\\/li>\\n<li>Tweak: Optimized Form widget to eliminate unnecessary markup when the button icon is empty<\\/li>\\n<li>Tweak: Optimized Posts widget to eliminate unnecessary markup when Load More button text is empty<\\/li>\\n<li>Tweak: Remove <code>placeholder<\\/code> arguments from URL controls<\\/li>\\n<li>Tweak: Implemented CSS logical properties to Icon Position in Form, Posts and Menu Cart widgets<\\/li>\\n<li>Tweak: Activated Display Conditions feature for existing sites<\\/li>\\n<li>Tweak: Activated Taxonomy Filter feature for existing sites<\\/li>\\n<li>Tweak: Added functionality to delay the running of the ready triggers on inner elements<\\/li>\\n<li>Fix: Icons are now part of the link in the Menu Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24298\\\">#24298<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25112\\\">#25112<\\/a>)<\\/li>\\n<li>Fix: <code>all: unset<\\/code> assigned to buttons cause focus issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24322\\\">#24322<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25448\\\">#25448<\\/a>)<\\/li>\\n<li>Fix: Menu cart SVG icon disappears on front when Optimized Control Loading experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27342\\\">#27342<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro auto-updates are not working on multisite networks (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12615\\\">#12615<\\/a>)<\\/li>\\n<li>Fix: PHP error appears in the editor when using Loop Grid in an archive template<\\/li>\\n<li>Fix: UI glitch on Icon Position control in Paypal and Stripe Buttons widgets<\\/li>\\n<li>Fix: Icon Position control RTL issue in Hotspot widget<\\/li>\\n<li>Fix: Manual Selection &quot;Include By&quot; Query doesn\'t work with product categories<\\/li>\\n<\\/ul>\\n<h4>3.21.3 - 2024-05-20<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Loop Grid widget<\\/li>\\n<li>Fix: License expired affects the Display Conditions functionality in the front end<\\/li>\\n<\\/ul>\\n<h4>3.21.2 - 2024-04-30<\\/h4>\\n<ul>\\n<li>Fix: Special characters are not displayed correctly when using the Excerpt widget in Loop template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25860\\\">#25860<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn\'t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Enqueuing non-existing Loop Template CSS file in Loop Item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24959\\\">#24959<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>New: Introducing Display Conditions for Elements - allowing users to customize content visibility based on specified criteria (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4246\\\">#4246<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21152\\\">#21152<\\/a>)<\\/li>\\n<li>New: Implemented Akismet Integration for enhanced spam protection and security in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11401\\\">#11401<\\/a>)<\\/li>\\n<li>New: Introducing Permissions functionality to Element Manager - providing users with enhanced control over access and management capabilities<\\/li>\\n<li>Tweak: Added styling option for dropdown indicator in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21907\\\">#21907<\\/a>)<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Implemented CSS logical properties in WordPress Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Reviews widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Countdown widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Updated <code>jquery.smartmenus.js<\\/code> version from 1.1.1 to 1.2.0<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21489\\\">#21489<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22368\\\">#22368<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23085\\\">#23085<\\/a>)<\\/li>\\n<li>Fix: History panel deprecation notices in console log<\\/li>\\n<li>Fix: Second Pro rollback installed the latest version instead of the specifically selected older version<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation in Menu Widget<\\/li>\\n<li>Fix: UX issues when using in-place editing in Menu widget<\\/li>\\n<li>Fix: Pagination with page reload is not working when used with the Taxonomy filter and Loop Grid widget in Archive template<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle becomes inaccessible in various scenarios cases in Loop Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">#21316<\\/a>)<\\/li>\\n<li>Fix: Can\'t edit page when using \'Content Tabs\' and \'Section\' options in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-20<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-06<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">#19553<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes character is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629\\\">#18629<\\/a>)<\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475]\\\">#11475<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.33.2\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.9\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvc2VjdXJlc3dpcGVzb2x1dGlvbnMiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzY0Nzg5MzA0LCJleHAiOjE3NjQ4NzU3MDR9.Ug3ANSDmKECeTXObaQRjDPDfAbCMmBNLd5wN2dTJIKg\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvc2VjdXJlc3dpcGVzb2x1dGlvbnMiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzY0Nzg5MzA0LCJleHAiOjE3NjQ4NzU3MDR9.Ug3ANSDmKECeTXObaQRjDPDfAbCMmBNLd5wN2dTJIKg\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.9\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvc2VjdXJlc3dpcGVzb2x1dGlvbnMiLCJpYXQiOjE3NjQ3ODkzMDQsImV4cCI6MTc2NDg3NTcwNH0.nurUeyIgcqU8XXm-KAHj4SoWkV8DnXZ37QwtuTM37iU\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvc2VjdXJlc3dpcGVzb2x1dGlvbnMiLCJpYXQiOjE3NjQ3ODkzMDQsImV4cCI6MTc2NDg3NTcwNH0.nurUeyIgcqU8XXm-KAHj4SoWkV8DnXZ37QwtuTM37iU\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}', 'off');
INSERT INTO `wps_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(393, '_elementor_notifications_data', 'a:2:{s:7:\"timeout\";i:1764247191;s:5:\"value\";s:11349:\"[{\"id\":\"black-friday-25\",\"title\":\"Save Up to 20% This Black Friday\",\"description\":\"Don\\u2019t miss out - our best Black Friday offer is live. Get Elementor Pro this Black Friday and unlock your site\\u2019s full potential.\",\"topic\":\"Black Friday\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/bf-sale-2025.png\",\"chipTags\":[\"Sale\"],\"cta\":\"See the Deals\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-black-friday-25\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"variables-manager-3.33\",\"title\":\"Variables Manager\",\"description\":\"Centralize and control all your color, typography, and size tokens for consistent, scalable design systems.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-variables-manager.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"custom-css-3.33\",\"title\":\"Custom CSS\",\"description\":\"Write isolated, responsive, and state-based CSS directly inside atomic elements for pixel-perfect control.\",\"topic\":\"Elementor Pro 3.33\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-custom-css.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"custom-css-3.33\",\"title\":\"Custom CSS\",\"description\":\"Write isolated, responsive, and state-based CSS directly inside atomic elements for pixel-perfect control.\",\"topic\":\"Elementor Pro 3.33\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-custom-css.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-custom-css\\/\"},{\"id\":\"blend-mode-3.33\",\"title\":\"Blend Mode\",\"description\":\"Layer and blend visuals to create depth, contrast, and cinematic design effects.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-blend.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"transform-3.32\",\"title\":\"Design with depth using Transform\",\"description\":\"Move, scale, rotate, and skew any element with ease. Transform controls add depth, stacked effects, and seamless States for hover, focus, and active micro-interactions.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.32-transform.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.32-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"size-variable-3.32\",\"title\":\"Consistency with Size Variables\",\"description\":\"Define reusable values for properties like spacing or typography, then update them once to scale changes instantly across your site.\",\"topic\":\"Elementor Pro 3.32\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.32-size-variables.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.32-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"size-variable-3.32\",\"title\":\"Consistency with Size Variables\",\"description\":\"Define reusable values for properties like spacing or typography, then update them once to scale changes instantly across your site.\",\"topic\":\"Elementor Pro 3.32\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.32-size-variables.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.32-size-variable\\/\"},{\"id\":\"transitions-3.32\",\"title\":\"Smooth interactions with Transitions\",\"description\":\"Bring polish to every interaction. Transitions let you animate style changes smoothly between states. In Pro, layer multiple transitions by property for refined, modern micro-animations.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.32-transition.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.32-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"variables-3.31\",\"title\":\"Scalable design with Variables\",\"description\":\"Define once, reuse everywhere. Color & Font Variables help you build consistent, scalable design systems that update globally and are perfect for large sites or teams.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-variables.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"filters-3.31\",\"title\":\"Visual effects with Filters and Backdrop Filters\",\"description\":\"Apply multiple Filters like blur, brightness, and contrast. Stack, reorder, and preview in real time without writing a line of code.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-filters.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"ally-assistant\",\"title\":\"New! Fix accessibility issues with Ally Assistant\",\"description\":\"Scan any page for accessibility issues and fix them in one click. From color contrast to missing alt text, Ally Assistant provides guided steps or AI-powered fixes to make your site more inclusive.\",\"topic\":\"Ally by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ally-assistant.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Scan for free\",\"ctaLink\":\"http:\\/\\/go.elementor.com\\/acc-assistant-launch-whats-new\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"pojo-accessibility\\/pojo-accessibility.php\"}]]},{\"id\":\"classes-3.31\",\"title\":\"Smarter Class Manager tools\",\"description\":\"Quickly locate and manage Global Classes with usage counts, a new locator panel, and full class search. Perfect for scaling and refactoring complex design systems.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-classes.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"attributes-3.31\",\"title\":\"Add semantic HTML with Attributes\",\"description\":\"Add custom HTML attributes like aria-*, data-*, and role to any element. Structure your markup for better accessibility, performance, and compliance.\",\"topic\":\"Elementor Pro 3.31\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-attributes.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"attributes-3.31\",\"title\":\"Add semantic HTML with Attributes\",\"description\":\"Add custom HTML attributes like aria-*, data-*, and role to any element. Structure your markup for better accessibility, performance, and compliance.\",\"topic\":\"Elementor Pro 3.31\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-attributes.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-attributes\\/\"},{\"id\":\"cloud-websites-3.30\",\"title\":\"Full Website Templates in the cloud\",\"description\":\"Save and apply entire websites, including multiple pages, styles, site settings, media, and layout configurations - directly from the cloud.\",\"topic\":\"Elementor Pro 3.30\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/cloud-3.30.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.39-v4-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"cloud-websites-3.30\",\"title\":\"Full Website Templates in the cloud\",\"description\":\"Save and apply entire websites, including multiple pages, styles, site settings, media, and layout configurations - directly from the cloud.\",\"topic\":\"Elementor Pro 3.30\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/cloud-3.30.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.30-cloud-websites\\/\"},{\"id\":\"ally-notification\",\"title\":\"Just released! Ally - a new plugin for web accessibility & usability\",\"description\":\"Ally simplifies the complexities of making your website more accessible. With new regulations here and coming, making your website more usable and inclusive is no longer just an option, but a must.\",\"topic\":\"Ally by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ally-notification.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get it free\",\"ctaLink\":\"https:\\/\\/wordpress.org\\/plugins\\/pojo-accessibility\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"pojo-accessibility\\/pojo-accessibility.php\"}]]},{\"id\":\"ai-site-planner\",\"title\":\"Instant Sitemaps & Wireframes\",\"description\":\"Get your website plan in minutes with AI Site Planner. Describe your desired site and AI will generate a sitemap, brief and wireframe populated with initial content, ready for you to customize.\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/aI-site-planner.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-site-planner\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"image-optimizer-3.19\",\"title\":\"Effortlessly optimize images for a stunning, high-speed website with the Image Optimizer plugin.\",\"description\":\"Image Optimizer perfectly balances between image quality and performance to boost your website.  Resize, compress, and convert images to WebP, for faster loading times and and better user experience.\",\"topic\":\"Image Optimizer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/image-optimizer-3.19.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get the Image Optimizer\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/io-notification-wp-dash-learn-more\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"image-optimization\\/image-optimization.php\"}]]},{\"id\":\"5-star-rating-prompt\",\"title\":\"Love the New Features? Let Us Know with 5 Stars!\",\"description\":\"Help spread the word by telling the world what you love about Elementor.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/5-star-rating-prompt.png\",\"cta\":\"Leave a Review\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/wp-dash-notification-five-stars\\/\"},{\"id\":\"site-mailer-introducing\",\"title\":\"Introducing Site Mailer\",\"description\":\"Keep your WordPress emails out of the spam folder with improved deliverability and an easy setup\\u2014no need for an SMTP plugin or complicated configurations.\",\"topic\":\"Site Mailer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/Site-mailer.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/sm-wp-dash-whatsnew\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"site-mailer\\/site-mailer.php\"}]]}]\";}', 'off'),
(396, 'pp_license_key', '820357b27bedb9bf31cf47c98f5a04b1', 'auto'),
(397, 'pp_license_status', 'valid', 'auto'),
(403, 'current_theme', 'astra child', 'auto'),
(404, 'theme_mods_astra', 'a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1763209909;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}}}}', 'off'),
(405, 'theme_switched', '', 'auto'),
(428, 'elementor_fonts_manager_font_types', 'a:0:{}', 'auto'),
(429, 'elementor_fonts_manager_fonts', 'a:0:{}', 'auto'),
(430, 'elementor_custom_icon_sets_config', 'a:0:{}', 'auto'),
(420, 'theme_mods_astra-child', 'a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:2;s:11:\"mobile_menu\";i:2;}s:18:\"custom_css_post_id\";i:-1;}', 'on'),
(3507, 'wp_notes_notify', '1', 'on'),
(511, 'elementor_pro_theme_builder_conditions', 'a:2:{s:6:\"footer\";a:1:{i:369;a:1:{i:0;s:15:\"include/general\";}}s:6:\"header\";a:1:{i:44;a:1:{i:0;s:15:\"include/general\";}}}', 'auto'),
(516, 'astra-color-palettes', 'a:5:{s:14:\"currentPalette\";s:9:\"palette_1\";s:8:\"palettes\";a:4:{s:9:\"palette_1\";a:9:{i:0;s:7:\"#4a9924\";i:1;s:7:\"#88ca3f\";i:2;s:7:\"#000b1b\";i:3;s:7:\"#4b4b53\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F0F5FA\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}s:9:\"palette_2\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:9:\"palette_3\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:9:\"palette_4\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:7:\"presets\";a:11:{s:3:\"Oak\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:5:\"Viola\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:5:\"Cedar\";a:9:{i:0;s:7:\"#DD183B\";i:1;s:7:\"#CC1939\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#3A3A3A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FFEDE6\";i:6;s:7:\"#140609\";i:7;s:7:\"#FFD1BF\";i:8;s:7:\"#222222\";}s:6:\"Willow\";a:9:{i:0;s:7:\"#54B435\";i:1;s:7:\"#379237\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#2F3B40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDFBE2\";i:6;s:7:\"#0C1406\";i:7;s:7:\"#D5EAD8\";i:8;s:7:\"#222222\";}s:4:\"Lily\";a:9:{i:0;s:7:\"#DCA54A\";i:1;s:7:\"#D09A40\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#4A4A4A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FAF5E5\";i:6;s:7:\"#141004\";i:7;s:7:\"#F0E6C5\";i:8;s:7:\"#222222\";}s:4:\"Rose\";a:9:{i:0;s:7:\"#FB5FAB\";i:1;s:7:\"#EA559D\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FCEEF5\";i:6;s:7:\"#140610\";i:7;s:7:\"#FAD8E9\";i:8;s:7:\"#222222\";}s:4:\"Sage\";a:9:{i:0;s:7:\"#1B9C85\";i:1;s:7:\"#178E79\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDF6EE\";i:6;s:7:\"#06140C\";i:7;s:7:\"#D4F3D7\";i:8;s:7:\"#222222\";}s:5:\"Flare\";a:9:{i:0;s:7:\"#FD9800\";i:1;s:7:\"#E98C00\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF9E1\";i:6;s:7:\"#141006\";i:7;s:7:\"#F9F0C8\";i:8;s:7:\"#222222\";}s:5:\"Maple\";a:9:{i:0;s:7:\"#FF6210\";i:1;s:7:\"#F15808\";i:2;s:7:\"#1C0D0A\";i:3;s:7:\"#353535\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF1E4\";i:6;s:7:\"#140B06\";i:7;s:7:\"#E5D7D1\";i:8;s:7:\"#222222\";}s:5:\"Birch\";a:9:{i:0;s:7:\"#737880\";i:1;s:7:\"#65696F\";i:2;s:7:\"#151616\";i:3;s:7:\"#393C40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F6F6F6\";i:6;s:7:\"#232529\";i:7;s:7:\"#F1F0F0\";i:8;s:7:\"#222222\";}s:4:\"Dark\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:11:\"presetNames\";a:4:{s:9:\"palette_1\";N;s:9:\"palette_2\";s:3:\"Oak\";s:9:\"palette_3\";s:5:\"Viola\";s:9:\"palette_4\";s:4:\"Dark\";}s:4:\"flag\";b:0;}', 'on'),
(3210, '_transient_bmi_latest_size_uploads', '15203452', 'on'),
(523, 'elementor_tracker_last_send', '1765268513', 'auto'),
(528, 'elementor_pro_license_key', 'ep-ugLu1rp3BCnkcUMDdaUB1701104650EgD4W7ueft6i', 'auto'),
(529, '_elementor_pro_license_v2_data_fallback', 'a:2:{s:7:\"timeout\";i:1764438884;s:5:\"value\";s:2845:\"{\"expires\":\"2026-11-27 00:00:00\",\"subscription_id\":\"14245656\",\"status\":\"ACTIVE\",\"recurring\":true,\"features\":[\"template_access_level_20\",\"kit_access_level_20\",\"activity-log\",\"breadcrumbs\",\"form\",\"posts\",\"template\",\"countdown\",\"slides\",\"price-list\",\"portfolio\",\"flip-box\",\"price-table\",\"login\",\"share-buttons\",\"theme-post-content\",\"theme-post-title\",\"nav-menu\",\"blockquote\",\"media-carousel\",\"animated-headline\",\"facebook-comments\",\"facebook-embed\",\"facebook-page\",\"facebook-button\",\"testimonial-carousel\",\"post-navigation\",\"search-form\",\"post-comments\",\"author-box\",\"call-to-action\",\"post-info\",\"theme-site-logo\",\"theme-site-title\",\"theme-archive-title\",\"theme-post-excerpt\",\"theme-post-featured-image\",\"archive-posts\",\"theme-page-title\",\"sitemap\",\"reviews\",\"table-of-contents\",\"lottie\",\"code-highlight\",\"hotspot\",\"video-playlist\",\"progress-tracker\",\"section-effects\",\"sticky\",\"scroll-snap\",\"page-transitions\",\"mega-menu\",\"nested-carousel\",\"loop-grid\",\"loop-carousel\",\"theme-builder\",\"elementor_icons\",\"elementor_custom_fonts\",\"dynamic-tags\",\"taxonomy-filter\",\"email\",\"email2\",\"mailpoet\",\"mailpoet3\",\"redirect\",\"header\",\"footer\",\"single-post\",\"single-page\",\"archive\",\"search-results\",\"error-404\",\"loop-item\",\"font-awesome-pro\",\"typekit\",\"gallery\",\"off-canvas\",\"link-in-bio-var-2\",\"link-in-bio-var-3\",\"link-in-bio-var-4\",\"link-in-bio-var-5\",\"link-in-bio-var-6\",\"link-in-bio-var-7\",\"search\",\"size-variable\",\"transitions\",\"element-manager-permissions\",\"akismet\",\"display-conditions\",\"woocommerce-products\",\"wc-products\",\"woocommerce-product-add-to-cart\",\"wc-elements\",\"wc-categories\",\"woocommerce-product-price\",\"woocommerce-product-title\",\"woocommerce-product-images\",\"woocommerce-product-upsell\",\"woocommerce-product-short-description\",\"woocommerce-product-meta\",\"woocommerce-product-stock\",\"woocommerce-product-rating\",\"wc-add-to-cart\",\"dynamic-tags-wc\",\"woocommerce-product-data-tabs\",\"woocommerce-product-related\",\"woocommerce-breadcrumb\",\"wc-archive-products\",\"woocommerce-archive-products\",\"woocommerce-product-additional-information\",\"woocommerce-menu-cart\",\"woocommerce-product-content\",\"woocommerce-archive-description\",\"paypal-button\",\"woocommerce-checkout-page\",\"woocommerce-cart\",\"woocommerce-my-account\",\"woocommerce-purchase-summary\",\"woocommerce-notices\",\"settings-woocommerce-pages\",\"settings-woocommerce-notices\",\"popup\",\"custom-css\",\"global-css\",\"custom_code\",\"custom-attributes\",\"form-submissions\",\"form-integrations\",\"dynamic-tags-acf\",\"dynamic-tags-pods\",\"dynamic-tags-toolset\",\"editor_comments\",\"stripe-button\",\"role-manager\",\"global-widget\",\"activecampaign\",\"cf7db\",\"convertkit\",\"discord\",\"drip\",\"getresponse\",\"mailchimp\",\"mailerlite\",\"slack\",\"webhook\",\"product-single\",\"product-archive\",\"wc-single-elements\",\"atomic-custom-attributes\",\"atomic-custom-css\"],\"tier\":\"agency\",\"generation\":\"empty\",\"activated\":true,\"success\":true}\";}', 'off'),
(530, '_elementor_pro_license_v2_data', 'a:2:{s:7:\"timeout\";i:1764395684;s:5:\"value\";s:2845:\"{\"expires\":\"2026-11-27 00:00:00\",\"subscription_id\":\"14245656\",\"status\":\"ACTIVE\",\"recurring\":true,\"features\":[\"template_access_level_20\",\"kit_access_level_20\",\"activity-log\",\"breadcrumbs\",\"form\",\"posts\",\"template\",\"countdown\",\"slides\",\"price-list\",\"portfolio\",\"flip-box\",\"price-table\",\"login\",\"share-buttons\",\"theme-post-content\",\"theme-post-title\",\"nav-menu\",\"blockquote\",\"media-carousel\",\"animated-headline\",\"facebook-comments\",\"facebook-embed\",\"facebook-page\",\"facebook-button\",\"testimonial-carousel\",\"post-navigation\",\"search-form\",\"post-comments\",\"author-box\",\"call-to-action\",\"post-info\",\"theme-site-logo\",\"theme-site-title\",\"theme-archive-title\",\"theme-post-excerpt\",\"theme-post-featured-image\",\"archive-posts\",\"theme-page-title\",\"sitemap\",\"reviews\",\"table-of-contents\",\"lottie\",\"code-highlight\",\"hotspot\",\"video-playlist\",\"progress-tracker\",\"section-effects\",\"sticky\",\"scroll-snap\",\"page-transitions\",\"mega-menu\",\"nested-carousel\",\"loop-grid\",\"loop-carousel\",\"theme-builder\",\"elementor_icons\",\"elementor_custom_fonts\",\"dynamic-tags\",\"taxonomy-filter\",\"email\",\"email2\",\"mailpoet\",\"mailpoet3\",\"redirect\",\"header\",\"footer\",\"single-post\",\"single-page\",\"archive\",\"search-results\",\"error-404\",\"loop-item\",\"font-awesome-pro\",\"typekit\",\"gallery\",\"off-canvas\",\"link-in-bio-var-2\",\"link-in-bio-var-3\",\"link-in-bio-var-4\",\"link-in-bio-var-5\",\"link-in-bio-var-6\",\"link-in-bio-var-7\",\"search\",\"size-variable\",\"transitions\",\"element-manager-permissions\",\"akismet\",\"display-conditions\",\"woocommerce-products\",\"wc-products\",\"woocommerce-product-add-to-cart\",\"wc-elements\",\"wc-categories\",\"woocommerce-product-price\",\"woocommerce-product-title\",\"woocommerce-product-images\",\"woocommerce-product-upsell\",\"woocommerce-product-short-description\",\"woocommerce-product-meta\",\"woocommerce-product-stock\",\"woocommerce-product-rating\",\"wc-add-to-cart\",\"dynamic-tags-wc\",\"woocommerce-product-data-tabs\",\"woocommerce-product-related\",\"woocommerce-breadcrumb\",\"wc-archive-products\",\"woocommerce-archive-products\",\"woocommerce-product-additional-information\",\"woocommerce-menu-cart\",\"woocommerce-product-content\",\"woocommerce-archive-description\",\"paypal-button\",\"woocommerce-checkout-page\",\"woocommerce-cart\",\"woocommerce-my-account\",\"woocommerce-purchase-summary\",\"woocommerce-notices\",\"settings-woocommerce-pages\",\"settings-woocommerce-notices\",\"popup\",\"custom-css\",\"global-css\",\"custom_code\",\"custom-attributes\",\"form-submissions\",\"form-integrations\",\"dynamic-tags-acf\",\"dynamic-tags-pods\",\"dynamic-tags-toolset\",\"editor_comments\",\"stripe-button\",\"role-manager\",\"global-widget\",\"activecampaign\",\"cf7db\",\"convertkit\",\"discord\",\"drip\",\"getresponse\",\"mailchimp\",\"mailerlite\",\"slack\",\"webhook\",\"product-single\",\"product-archive\",\"wc-single-elements\",\"atomic-custom-attributes\",\"atomic-custom-css\"],\"tier\":\"agency\",\"generation\":\"empty\",\"activated\":true,\"success\":true}\";}', 'off'),
(531, 'elementor_notes_db_version', '5', 'auto'),
(564, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'off'),
(591, 'elementor_controls_usage', 'a:5:{s:7:\"wp-page\";a:11:{s:7:\"heading\";a:2:{s:5:\"count\";i:17;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:17;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:4;s:25:\"typography_text_transform\";i:3;s:5:\"align\";i:5;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:17;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:9;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:9;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:63;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:13:\"content_width\";i:47;s:14:\"flex_direction\";i:43;s:20:\"flex_justify_content\";i:20;s:5:\"width\";i:31;s:8:\"flex_gap\";i:17;s:10:\"min_height\";i:2;s:9:\"flex_wrap\";i:5;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:63;}s:18:\"section_background\";a:9:{s:21:\"background_background\";i:24;s:16:\"background_color\";i:13;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;s:21:\"background_video_link\";i:1;s:25:\"background_play_on_mobile\";i:1;s:27:\"background_hover_background\";i:5;}s:26:\"section_background_overlay\";a:4:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:8;s:12:\"border_width\";i:8;s:13:\"border_radius\";i:5;s:12:\"border_color\";i:5;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:63;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:33;s:18:\"animation_duration\";i:29;}s:14:\"section_layout\";a:3:{s:7:\"padding\";i:34;s:16:\"_flex_align_self\";i:3;s:11:\"css_classes\";i:10;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:2;s:12:\"hide_desktop\";i:2;s:17:\"hide_tablet_extra\";i:2;s:11:\"hide_tablet\";i:2;s:17:\"hide_mobile_extra\";i:3;s:11:\"hide_mobile\";i:3;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:15;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:13:\"selected_icon\";i:15;s:10:\"title_text\";i:15;s:16:\"description_text\";i:15;s:10:\"title_size\";i:15;s:4:\"view\";i:11;s:4:\"link\";i:4;s:5:\"shape\";i:7;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:5:{s:8:\"position\";i:11;s:26:\"content_vertical_alignment\";i:4;s:15:\"position_mobile\";i:11;s:10:\"text_align\";i:4;s:18:\"title_bottom_space\";i:4;}s:21:\"section_style_content\";a:2:{s:27:\"title_typography_typography\";i:4;s:28:\"title_typography_font_weight\";i:4;}s:18:\"section_style_icon\";a:2:{s:9:\"icon_size\";i:11;s:12:\"icon_padding\";i:11;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:15;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:11;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:2;s:11:\"form_fields\";i:2;s:10:\"input_size\";i:2;}s:15:\"section_buttons\";a:2:{s:11:\"button_size\";i:2;s:11:\"button_text\";i:2;}s:13:\"section_email\";a:5:{s:8:\"email_to\";i:2;s:13:\"email_subject\";i:2;s:10:\"email_from\";i:2;s:14:\"email_reply_to\";i:2;s:13:\"form_metadata\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:2;s:7:\"row_gap\";i:2;s:13:\"label_spacing\";i:2;s:27:\"label_typography_typography\";i:2;s:26:\"label_typography_font_size\";i:2;s:31:\"label_typography_text_transform\";i:2;}s:19:\"section_field_style\";a:2:{s:22:\"field_background_color\";i:2;s:18:\"field_border_color\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:15;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:15;s:10:\"image_size\";i:15;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:19:\"image_border_radius\";i:12;s:18:\"image_border_width\";i:3;s:6:\"height\";i:1;s:10:\"object-fit\";i:1;s:19:\"image_border_border\";i:6;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:15;}}}}s:20:\"pp-info-box-carousel\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_info_boxes\";a:5:{s:13:\"pp_info_boxes\";i:2;s:6:\"layout\";i:2;s:20:\"columns_mobile_extra\";i:2;s:7:\"columns\";i:1;s:14:\"title_html_tag\";i:1;}}s:5:\"style\";a:3:{s:22:\"section_info_box_style\";a:7:{s:22:\"info_box_border_radius\";i:2;s:16:\"info_box_padding\";i:2;s:30:\"info_box_background_background\";i:1;s:25:\"info_box_background_color\";i:1;s:22:\"info_box_border_border\";i:1;s:21:\"info_box_border_width\";i:1;s:21:\"info_box_border_color\";i:1;}s:27:\"section_info_box_icon_style\";a:2:{s:9:\"icon_size\";i:2;s:11:\"icon_margin\";i:1;}s:28:\"section_info_box_title_style\";a:1:{s:12:\"title_margin\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"pp-faq\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_accordion_faqs\";a:1:{s:4:\"tabs\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_faq_items_style\";a:2:{s:25:\"faqs_items_bottom_spacing\";i:1;s:22:\"faq_items_border_color\";i:1;}s:23:\"section_questions_style\";a:8:{s:17:\"question_bg_color\";i:1;s:22:\"question_border_border\";i:1;s:21:\"question_border_color\";i:1;s:25:\"question_text_color_hover\";i:1;s:23:\"question_bg_color_hover\";i:1;s:26:\"question_text_color_active\";i:1;s:24:\"question_bg_color_active\";i:1;s:16:\"question_padding\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:3;s:4:\"link\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:4:\"icon\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:4;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:10:\"icon_align\";i:1;}s:18:\"section_text_style\";a:2:{s:26:\"icon_typography_typography\";i:1;s:25:\"icon_typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}s:4:\"page\";a:12:{s:7:\"heading\";a:2:{s:5:\"count\";i:11;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:11;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:5:\"align\";i:5;s:21:\"typography_typography\";i:3;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:2;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:11;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:1;s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:6:{s:10:\"icon_align\";i:1;s:7:\"divider\";i:1;s:13:\"divider_style\";i:1;s:14:\"divider_weight\";i:1;s:14:\"divider_height\";i:1;s:13:\"space_between\";i:1;}s:18:\"section_text_style\";a:4:{s:26:\"icon_typography_typography\";i:2;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:2;s:27:\"icon_typography_font_family\";i:1;}s:18:\"section_icon_style\";a:4:{s:9:\"icon_size\";i:1;s:11:\"text_indent\";i:1;s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;s:7:\"_margin\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:6;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:8;s:4:\"link\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:5:\"align\";i:6;s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:8;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:40;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:9:{s:13:\"content_width\";i:31;s:14:\"flex_direction\";i:20;s:10:\"min_height\";i:3;s:20:\"flex_justify_content\";i:13;s:5:\"width\";i:16;s:9:\"flex_wrap\";i:6;s:8:\"flex_gap\";i:6;s:16:\"flex_align_items\";i:1;s:11:\"boxed_width\";i:1;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:40;}s:18:\"section_background\";a:11:{s:21:\"background_background\";i:20;s:16:\"background_image\";i:5;s:19:\"background_position\";i:5;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:4;s:21:\"background_video_link\";i:1;s:16:\"background_color\";i:9;s:27:\"background_hover_background\";i:5;s:36:\"background_slideshow_background_size\";i:1;s:40:\"background_slideshow_background_position\";i:1;s:21:\"background_attachment\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:3;s:26:\"background_overlay_opacity\";i:2;s:24:\"background_overlay_color\";i:1;s:29:\"background_overlay_color_stop\";i:1;s:26:\"background_overlay_color_b\";i:1;s:31:\"background_overlay_color_b_stop\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:4;s:12:\"border_width\";i:4;s:12:\"border_color\";i:2;s:13:\"border_radius\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:40;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:23;s:18:\"animation_duration\";i:8;}s:14:\"section_layout\";a:2:{s:7:\"padding\";i:24;s:11:\"css_classes\";i:17;}}}}s:4:\"icon\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:4;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:6:{s:13:\"selected_icon\";i:6;s:10:\"title_text\";i:6;s:16:\"description_text\";i:6;s:10:\"title_size\";i:6;s:4:\"view\";i:2;s:4:\"link\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:5:{s:10:\"text_align\";i:4;s:18:\"title_bottom_space\";i:4;s:8:\"position\";i:2;s:15:\"position_mobile\";i:2;s:26:\"content_vertical_alignment\";i:2;}s:18:\"section_style_icon\";a:2:{s:9:\"icon_size\";i:2;s:12:\"icon_padding\";i:2;}s:21:\"section_style_content\";a:2:{s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_weight\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:6;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_size\";i:1;s:11:\"button_text\";i:1;}s:13:\"section_email\";a:5:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:14:\"email_reply_to\";i:1;s:13:\"form_metadata\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;s:31:\"label_typography_text_transform\";i:1;}s:19:\"section_field_style\";a:2:{s:22:\"field_background_color\";i:1;s:18:\"field_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:19:\"image_border_radius\";i:1;s:5:\"align\";i:1;s:5:\"width\";i:1;s:18:\"image_border_width\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:4:{s:5:\"width\";i:3;s:5:\"align\";i:3;s:4:\"look\";i:1;s:4:\"icon\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:9:\"image-box\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:10:\"title_size\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_style_box\";a:2:{s:18:\"title_bottom_space\";i:3;s:11:\"image_space\";i:3;}s:19:\"section_style_image\";a:1:{s:10:\"image_size\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:8:\"pp-posts\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:7:{s:13:\"section_query\";a:1:{s:21:\"nothing_found_message\";i:1;}s:18:\"section_skin_field\";a:3:{s:14:\"posts_per_page\";i:1;s:20:\"classic_equal_height\";i:1;s:28:\"classic_columns_mobile_extra\";i:1;}s:21:\"classic_section_image\";a:1:{s:22:\"classic_thumbnail_size\";i:1;}s:26:\"classic_section_post_title\";a:1:{s:22:\"classic_title_html_tag\";i:1;}s:28:\"classic_section_post_excerpt\";a:2:{s:20:\"classic_show_excerpt\";i:1;s:22:\"classic_excerpt_length\";i:1;}s:25:\"classic_section_post_meta\";a:1:{s:21:\"classic_show_comments\";i:1;}s:22:\"classic_section_button\";a:1:{s:19:\"classic_show_button\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}s:5:\"style\";a:6:{s:30:\"classic_section_post_box_style\";a:2:{s:39:\"classic_post_box_shadow_box_shadow_type\";i:1;s:34:\"classic_post_box_shadow_box_shadow\";i:1;}s:34:\"classic_section_post_content_style\";a:1:{s:28:\"classic_post_content_padding\";i:1;}s:27:\"classic_section_terms_style\";a:3:{s:24:\"classic_terms_text_color\";i:1;s:30:\"classic_terms_text_color_hover\";i:1;s:27:\"classic_terms_margin_bottom\";i:1;}s:26:\"classic_section_meta_style\";a:3:{s:23:\"classic_meta_text_color\";i:1;s:30:\"classic_meta_links_color_hover\";i:1;s:26:\"classic_meta_margin_bottom\";i:1;}s:28:\"classic_section_button_style\";a:6:{s:36:\"classic_button_typography_typography\";i:1;s:41:\"classic_button_typography_text_decoration\";i:1;s:30:\"classic_button_bg_color_normal\";i:1;s:21:\"classic_button_margin\";i:1;s:22:\"classic_button_padding\";i:1;s:29:\"classic_button_bg_color_hover\";i:1;}s:29:\"classic_section_excerpt_style\";a:1:{s:29:\"classic_excerpt_margin_bottom\";i:1;}}}}}s:9:\"container\";a:3:{s:7:\"heading\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:1:{s:11:\"button_size\";i:1;}s:13:\"section_email\";a:1:{s:13:\"form_metadata\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:2:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;}s:19:\"section_field_style\";a:1:{s:18:\"field_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:2;s:13:\"content_width\";i:1;s:5:\"width\";i:1;s:8:\"flex_gap\";i:1;s:20:\"flex_justify_content\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}}}}}s:6:\"footer\";a:5:{s:7:\"heading\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:2;s:10:\"link_click\";i:2;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:5;s:13:\"content_width\";i:3;s:5:\"width\";i:3;s:9:\"flex_wrap\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:5;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}}}}s:11:\"google_maps\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:6:\"height\";i:1;s:4:\"zoom\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}s:6:\"header\";a:6:{s:9:\"icon-list\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:2;s:10:\"link_click\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_icon_style\";a:1:{s:10:\"icon_color\";i:2;}s:18:\"section_text_style\";a:1:{s:10:\"text_color\";i:2;}s:17:\"section_icon_list\";a:2:{s:17:\"icon_align_mobile\";i:2;s:10:\"icon_align\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:6:{s:14:\"flex_direction\";i:7;s:13:\"content_width\";i:5;s:5:\"width\";i:4;s:8:\"flex_gap\";i:2;s:20:\"flex_justify_content\";i:2;s:10:\"min_height\";i:1;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:8;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:3:{s:7:\"padding\";i:6;s:16:\"_flex_align_self\";i:1;s:20:\"e_display_conditions\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:8;}s:15:\"section_effects\";a:5:{s:6:\"sticky\";i:1;s:9:\"sticky_on\";i:1;s:21:\"sticky_effects_offset\";i:1;s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:5:\"align\";i:1;s:5:\"width\";i:1;s:5:\"space\";i:1;s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:16:\"pp-advanced-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:9:\"menu_type\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main_menu\";a:1:{s:29:\"pointer_color_menu_item_hover\";i:1;}s:12:\"style_toggle\";a:1:{s:23:\"toggle_background_color\";i:1;}s:16:\"style_typography\";a:1:{s:26:\"menu_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:16:\"_flex_align_self\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:16:\"theme-page-title\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}}', 'off'),
(574, 'auto_core_update_notified', 'a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:21:\"arifwebsols@gmail.com\";s:7:\"version\";s:3:\"6.9\";s:9:\"timestamp\";i:1764789305;}', 'off'),
(3204, '_irb_h_bn_review', 'a:2:{s:5:\"users\";a:0:{}s:13:\"backup-backup\";i:1764352820;}', 'auto'),
(3200, 'bmi_hotfixes', 'a:3:{i:0;s:14:\"BMI_D20_M07_01\";i:1;s:18:\"BMI_D17_M12_Y21_02\";i:2;s:18:\"BMI_D13_M08_Y23_01\";}', 'auto'),
(3201, 'bmi_initial_installation_version', '2.0.0', 'auto'),
(3208, 'bmip_to_be_uploaded', 'a:3:{s:14:\"current_upload\";a:0:{}s:5:\"queue\";a:0:{}s:6:\"failed\";a:0:{}}', 'auto'),
(3203, 'analyst_cache', 's:6:\"a:0:{}\";', 'auto'),
(645, 'WPLANG', '', 'auto'),
(646, 'new_admin_email', 'arifwebsols@gmail.com', 'auto'),
(611, 'elementor_library_category_children', 'a:0:{}', 'auto'),
(675, '_elementor_pro_editor_renew_about_to_expire_license_notice_dismissed', '1763794621', 'auto'),
(1499, '_transient_health-check-site-status-result', '{\"good\":22,\"recommended\":1,\"critical\":2}', 'on'),
(3129, '_transient_is_multi_author', '0', 'on'),
(3929, '_transient_timeout_astra-theme-cron-test-ok', '1765272111', 'off'),
(3930, '_transient_astra-theme-cron-test-ok', '1', 'off');
INSERT INTO `wps_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(3722, 'elementor-custom-breakpoints-files', 'a:29:{s:19:\"custom-lightbox.min\";a:1:{s:4:\"time\";i:1764998194;}s:19:\"custom-frontend.min\";a:1:{s:4:\"time\";i:1764998194;}s:27:\"custom-widget-accordion.min\";a:1:{s:4:\"time\";i:1764998194;}s:23:\"custom-widget-alert.min\";a:1:{s:4:\"time\";i:1764998194;}s:26:\"custom-widget-icon-box.min\";a:1:{s:4:\"time\";i:1764998194;}s:27:\"custom-widget-icon-list.min\";a:1:{s:4:\"time\";i:1764998194;}s:27:\"custom-widget-image-box.min\";a:1:{s:4:\"time\";i:1764998194;}s:31:\"custom-widget-image-gallery.min\";a:1:{s:4:\"time\";i:1764998194;}s:26:\"custom-widget-progress.min\";a:1:{s:4:\"time\";i:1764998194;}s:29:\"custom-widget-star-rating.min\";a:1:{s:4:\"time\";i:1764998194;}s:22:\"custom-widget-tabs.min\";a:1:{s:4:\"time\";i:1764998194;}s:24:\"custom-widget-toggle.min\";a:1:{s:4:\"time\";i:1764998194;}s:29:\"custom-widget-nested-tabs.min\";a:1:{s:4:\"time\";i:1764998194;}s:34:\"custom-widget-link-in-bio-base.min\";a:1:{s:4:\"time\";i:1764998194;}s:34:\"custom-widget-floating-buttons.min\";a:1:{s:4:\"time\";i:1764998194;}s:36:\"custom-widget-floating-bars-base.min\";a:1:{s:4:\"time\";i:1764998194;}s:37:\"custom-widget-floating-bars-var-3.min\";a:1:{s:4:\"time\";i:1764998194;}s:38:\"custom-widget-contact-buttons-base.min\";a:1:{s:4:\"time\";i:1764998194;}s:39:\"custom-widget-contact-buttons-var-7.min\";a:1:{s:4:\"time\";i:1764998194;}s:39:\"custom-widget-contact-buttons-var-9.min\";a:1:{s:4:\"time\";i:1764998194;}s:40:\"custom-widget-contact-buttons-var-10.min\";a:1:{s:4:\"time\";i:1764998194;}s:28:\"custom-pro-widget-slides.min\";a:1:{s:4:\"time\";i:1764998194;}s:30:\"custom-pro-widget-nav-menu.min\";a:1:{s:4:\"time\";i:1764998194;}s:30:\"custom-pro-widget-flip-box.min\";a:1:{s:4:\"time\";i:1764998194;}s:36:\"custom-pro-widget-call-to-action.min\";a:1:{s:4:\"time\";i:1764998194;}s:42:\"custom-pro-widget-testimonial-carousel.min\";a:1:{s:4:\"time\";i:1764998194;}s:36:\"custom-pro-widget-video-playlist.min\";a:1:{s:4:\"time\";i:1764998194;}s:23:\"custom-apple-webkit.min\";a:1:{s:4:\"time\";i:1765268511;}s:29:\"custom-widget-link-in-bio.min\";a:1:{s:4:\"time\";i:1765268511;}}', 'auto'),
(3723, '_elementor_assets_data', 'a:1:{s:3:\"svg\";a:1:{s:9:\"font-icon\";a:4:{s:12:\"far-envelope\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:494:\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\";s:3:\"key\";s:12:\"far-envelope\";}s:7:\"version\";s:6:\"5.15.3\";}s:13:\"fas-phone-alt\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:264:\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\";s:3:\"key\";s:13:\"fas-phone-alt\";}s:7:\"version\";s:6:\"5.15.3\";}s:14:\"fas-caret-down\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:320;s:6:\"height\";i:512;s:4:\"path\";s:119:\"M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z\";s:3:\"key\";s:14:\"fas-caret-down\";}s:7:\"version\";s:6:\"5.15.3\";}s:22:\"fas-angle-double-right\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:448;s:6:\"height\";i:512;s:4:\"path\";s:378:\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\";s:3:\"key\";s:22:\"fas-angle-double-right\";}s:7:\"version\";s:6:\"5.15.3\";}}}}', 'auto'),
(3939, '_site_transient_timeout_php_check_9da3f9e285c18d164083488b0813f10b', '1765873316', 'off'),
(3940, '_site_transient_php_check_9da3f9e285c18d164083488b0813f10b', 'a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'off'),
(3932, '_transient_timeout_elementor_rollback_versions_3.33.0', '1765873314', 'off'),
(3933, '_transient_elementor_rollback_versions_3.33.0', 'a:30:{i:0;s:6:\"3.32.5\";i:1;s:6:\"3.32.4\";i:2;s:6:\"3.32.3\";i:3;s:6:\"3.32.2\";i:4;s:6:\"3.32.1\";i:5;s:6:\"3.32.0\";i:6;s:6:\"3.31.5\";i:7;s:6:\"3.31.4\";i:8;s:6:\"3.31.3\";i:9;s:6:\"3.31.2\";i:10;s:6:\"3.31.1\";i:11;s:6:\"3.31.0\";i:12;s:6:\"3.30.4\";i:13;s:6:\"3.30.3\";i:14;s:6:\"3.30.2\";i:15;s:6:\"3.30.1\";i:16;s:6:\"3.30.0\";i:17;s:6:\"3.29.2\";i:18;s:6:\"3.29.1\";i:19;s:6:\"3.29.0\";i:20;s:6:\"3.28.4\";i:21;s:6:\"3.28.3\";i:22;s:6:\"3.28.2\";i:23;s:6:\"3.28.1\";i:24;s:6:\"3.28.0\";i:25;s:6:\"3.27.7\";i:26;s:6:\"3.27.6\";i:27;s:6:\"3.27.5\";i:28;s:6:\"3.27.4\";i:29;s:6:\"3.27.3\";}', 'off'),
(3935, '_site_transient_timeout_theme_roots', '1765270315', 'off'),
(3936, '_site_transient_theme_roots', 'a:3:{s:11:\"astra-child\";s:7:\"/themes\";s:5:\"astra\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";}', 'off'),
(3937, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1765268516;s:7:\"checked\";a:3:{s:11:\"astra-child\";s:5:\"1.0.0\";s:5:\"astra\";s:7:\"4.11.15\";s:17:\"twentytwentythree\";s:3:\"1.6\";}s:8:\"response\";a:1:{s:5:\"astra\";a:6:{s:5:\"theme\";s:5:\"astra\";s:11:\"new_version\";s:7:\"4.11.17\";s:3:\"url\";s:35:\"https://wordpress.org/themes/astra/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/astra.4.11.17.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.3\";}}s:9:\"no_update\";a:1:{s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}', 'off'),
(3917, 'litespeed.conf.cdn-cloudflare_clear', '', 'auto'),
(3918, 'litespeed.conf.cdn-mapping', '[{\"url\":\"\",\"inc_img\":\"1\",\"inc_css\":\"1\",\"inc_js\":\"1\",\"filetype\":[\".aac\",\".css\",\".eot\",\".gif\",\".jpeg\",\".jpg\",\".js\",\".less\",\".mp3\",\".mp4\",\".ogg\",\".otf\",\".pdf\",\".png\",\".svg\",\".ttf\",\".webp\",\".woff\",\".woff2\"]}]', 'auto'),
(3919, 'litespeed.conf.cdn-attr', '[\".src\",\".data-src\",\".href\",\".poster\",\"source.srcset\"]', 'auto'),
(3920, 'litespeed.conf.qc-nameservers', '', 'auto'),
(3921, 'litespeed.conf.qc-cname', '', 'auto'),
(3922, 'litespeed.conf.debug-disable_tmp', '0', 'auto'),
(3923, 'litespeed.purge.queue', '-1', 'auto'),
(3924, 'litespeed.purge.queue2', '-1', 'auto'),
(3916, 'litespeed.conf.cdn-cloudflare_zone', '', 'auto'),
(3915, 'litespeed.conf.cdn-cloudflare_name', '', 'auto'),
(3914, 'litespeed.conf.cdn-cloudflare_key', '', 'auto'),
(3913, 'litespeed.conf.cdn-cloudflare_email', '', 'auto'),
(3912, 'litespeed.conf.cdn-cloudflare', '', 'auto'),
(3911, 'litespeed.conf.cdn-quic', '', 'auto'),
(3910, 'litespeed.conf.cdn-exc', '[]', 'auto'),
(3909, 'litespeed.conf.cdn-ori_dir', '[\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\",\"wp-includes\"]', 'auto'),
(3908, 'litespeed.conf.cdn-ori', '[]', 'auto'),
(3907, 'litespeed.conf.cdn', '', 'auto'),
(3906, 'litespeed.conf.misc-heartbeat_editor_ttl', '15', 'auto'),
(3905, 'litespeed.conf.misc-heartbeat_editor', '', 'auto'),
(3904, 'litespeed.conf.misc-heartbeat_back_ttl', '60', 'auto'),
(3903, 'litespeed.conf.misc-heartbeat_back', '', 'auto'),
(3902, 'litespeed.conf.misc-heartbeat_front_ttl', '60', 'auto'),
(3901, 'litespeed.conf.misc-heartbeat_front', '', 'auto'),
(3900, 'litespeed.conf.crawler-cookies', '[]', 'auto'),
(3898, 'litespeed.conf.crawler-sitemap', '', 'auto'),
(3899, 'litespeed.conf.crawler-roles', '[]', 'auto'),
(3897, 'litespeed.conf.crawler-load_limit', '1', 'auto'),
(3896, 'litespeed.conf.crawler-crawl_interval', '302400', 'auto'),
(3895, 'litespeed.conf.crawler', '', 'auto'),
(3894, 'litespeed.conf.img_optm-jpg_quality', '82', 'auto'),
(3893, 'litespeed.conf.img_optm-webp_replace_srcset', '', 'auto'),
(3892, 'litespeed.conf.img_optm-webp_attr', '[\"img.src\",\"div.data-thumb\",\"img.data-src\",\"img.data-lazyload\",\"div.data-large_image\",\"img.retina_logo_url\",\"div.data-parallax-image\",\"div.data-vc-parallax-image\",\"video.poster\"]', 'auto'),
(3891, 'litespeed.conf.img_optm-exif', '1', 'auto'),
(3890, 'litespeed.conf.img_optm-sizes_skipped', '[]', 'auto'),
(3889, 'litespeed.conf.img_optm-lossless', '', 'auto'),
(3888, 'litespeed.conf.img_optm-webp', '0', 'auto'),
(3887, 'litespeed.conf.img_optm-rm_bkup', '', 'auto'),
(3886, 'litespeed.conf.img_optm-ori', '1', 'auto'),
(3885, 'litespeed.conf.img_optm-auto', '', 'auto'),
(3884, 'litespeed.conf.media-auto_rescale_ori', '', 'auto'),
(3883, 'litespeed.conf.media-vpi_cron', '', 'auto'),
(3882, 'litespeed.conf.media-vpi', '', 'auto'),
(3881, 'litespeed.conf.media-lqip_exc', '[]', 'auto'),
(3880, 'litespeed.conf.media-lazy_uri_exc', '[]', 'auto'),
(3879, 'litespeed.conf.media-iframe_lazy_parent_cls_exc', '[]', 'auto'),
(3878, 'litespeed.conf.media-iframe_lazy_cls_exc', '[]', 'auto'),
(3875, 'litespeed.conf.media-lazy_exc', '[]', 'auto'),
(3876, 'litespeed.conf.media-lazy_cls_exc', '[\"wmu-preview-img\"]', 'auto'),
(3877, 'litespeed.conf.media-lazy_parent_cls_exc', '[]', 'auto'),
(3874, 'litespeed.conf.media-add_missing_sizes', '', 'auto'),
(3873, 'litespeed.conf.media-iframe_lazy', '', 'auto'),
(3872, 'litespeed.conf.media-placeholder_resp_async', '1', 'auto'),
(3871, 'litespeed.conf.media-lqip_min_h', '150', 'auto'),
(3870, 'litespeed.conf.media-lqip_min_w', '150', 'auto'),
(3869, 'litespeed.conf.media-lqip_qual', '4', 'auto'),
(3868, 'litespeed.conf.media-lqip', '', 'auto'),
(3867, 'litespeed.conf.media-placeholder_resp_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"{width}\" height=\"{height}\" viewBox=\"0 0 {width} {height}\"><rect width=\"100%\" height=\"100%\" style=\"fill:{color};fill-opacity: 0.1;\"/></svg>', 'auto'),
(3866, 'litespeed.conf.media-placeholder_resp_color', '#cfd4db', 'auto'),
(3865, 'litespeed.conf.media-placeholder_resp', '', 'auto'),
(3864, 'litespeed.conf.media-lazy_placeholder', '', 'auto'),
(3863, 'litespeed.conf.media-lazy', '', 'auto'),
(3862, 'litespeed.conf.optm-localize_domains', '[\"### Popular scripts ###\",\"https:\\/\\/platform.twitter.com\\/widgets.js\",\"https:\\/\\/connect.facebook.net\\/en_US\\/fbevents.js\"]', 'auto'),
(3861, 'litespeed.conf.optm-localize', '', 'auto'),
(3860, 'litespeed.conf.discuss-avatar_cache_ttl', '604800', 'auto'),
(3859, 'litespeed.conf.discuss-avatar_cron', '', 'auto'),
(3858, 'litespeed.conf.discuss-avatar_cache', '', 'auto'),
(3857, 'litespeed.conf.object-non_persistent_groups', '[\"comment\",\"counts\",\"plugins\",\"wc_session_id\"]', 'auto'),
(3856, 'litespeed.conf.object-global_groups', '[\"users\",\"userlogins\",\"useremail\",\"userslugs\",\"usermeta\",\"user_meta\",\"site-transient\",\"site-options\",\"site-lookup\",\"site-details\",\"blog-lookup\",\"blog-details\",\"blog-id-cache\",\"rss\",\"global-posts\",\"global-cache-test\"]', 'auto'),
(3855, 'litespeed.conf.object-pswd', '', 'auto'),
(3854, 'litespeed.conf.object-user', '', 'auto'),
(3853, 'litespeed.conf.object-db_id', '0', 'auto'),
(3852, 'litespeed.conf.object-transients', '1', 'auto'),
(3851, 'litespeed.conf.object-admin', '1', 'auto'),
(3850, 'litespeed.conf.object-persistent', '1', 'auto'),
(3849, 'litespeed.conf.object-life', '360', 'auto'),
(3848, 'litespeed.conf.object-port', '11211', 'auto'),
(3847, 'litespeed.conf.object-host', 'localhost', 'auto'),
(3846, 'litespeed.conf.object-kind', '', 'auto'),
(3845, 'litespeed.conf.object', '', 'auto'),
(3844, 'litespeed.conf.optm-guest_only', '1', 'auto'),
(3843, 'litespeed.conf.optm-exc', '[]', 'auto'),
(3842, 'litespeed.conf.optm-dns_preconnect', '[]', 'auto'),
(3841, 'litespeed.conf.optm-dns_prefetch_ctrl', '', 'auto'),
(3840, 'litespeed.conf.optm-dns_prefetch', '[]', 'auto'),
(3839, 'litespeed.conf.optm-gm_js_exc', '[]', 'auto'),
(3838, 'litespeed.conf.optm-js_defer_exc', '[\"jquery.js\",\"jquery.min.js\",\"gtm.js\",\"analytics.js\"]', 'auto'),
(3837, 'litespeed.conf.optm-ccss_con', '', 'auto'),
(3836, 'litespeed.conf.optm-exc_roles', '[]', 'auto'),
(3835, 'litespeed.conf.optm-ggfonts_async', '', 'auto'),
(3834, 'litespeed.conf.optm-noscript_rm', '', 'auto'),
(3833, 'litespeed.conf.optm-emoji_rm', '', 'auto'),
(3832, 'litespeed.conf.optm-js_defer', '0', 'auto'),
(3831, 'litespeed.conf.optm-css_font_display', '', 'auto'),
(3830, 'litespeed.conf.optm-css_async_inline', '1', 'auto'),
(3829, 'litespeed.conf.optm-ccss_whitelist', '[]', 'auto'),
(3828, 'litespeed.conf.optm-ccss_sep_uri', '[]', 'auto'),
(3827, 'litespeed.conf.optm-ccss_sep_posttype', '[\"page\"]', 'auto'),
(3826, 'litespeed.conf.optm-ccss_per_url', '', 'auto'),
(3825, 'litespeed.conf.optm-css_async', '', 'auto'),
(3824, 'litespeed.conf.optm-ggfonts_rm', '', 'auto'),
(3823, 'litespeed.conf.optm-qs_rm', '', 'auto'),
(3822, 'litespeed.conf.optm-html_skip_comment', '[]', 'auto'),
(3818, 'litespeed.conf.optm-js_delay_inc', '[]', 'auto'),
(3819, 'litespeed.conf.optm-js_exc', '[\"jquery.js\",\"jquery.min.js\"]', 'auto'),
(3820, 'litespeed.conf.optm-html_min', '', 'auto'),
(3821, 'litespeed.conf.optm-html_lazy', '[]', 'auto'),
(3816, 'litespeed.conf.optm-js_comb', '', 'auto'),
(3817, 'litespeed.conf.optm-js_comb_ext_inl', '1', 'auto'),
(3815, 'litespeed.conf.optm-js_min', '', 'auto'),
(3814, 'litespeed.conf.optm-css_exc', '[]', 'auto'),
(3813, 'litespeed.conf.optm-ucss_exc', '[]', 'auto'),
(3812, 'litespeed.conf.optm-ucss_file_exc_inline', '[]', 'auto'),
(3809, 'litespeed.conf.optm-ucss', '', 'auto'),
(3810, 'litespeed.conf.optm-ucss_inline', '', 'auto'),
(3811, 'litespeed.conf.optm-ucss_whitelist', '[]', 'auto'),
(3808, 'litespeed.conf.optm-css_comb_ext_inl', '1', 'auto'),
(3807, 'litespeed.conf.optm-css_comb', '', 'auto'),
(3806, 'litespeed.conf.optm-css_min', '', 'auto'),
(3805, 'litespeed.conf.db_optm-revisions_age', '0', 'auto'),
(3801, 'litespeed.conf.debug-inc', '[]', 'auto'),
(3802, 'litespeed.conf.debug-exc', '[]', 'auto'),
(3803, 'litespeed.conf.debug-exc_strings', '[]', 'auto'),
(3804, 'litespeed.conf.db_optm-revisions_max', '0', 'auto'),
(3800, 'litespeed.conf.debug-collapse_qs', '', 'auto'),
(3799, 'litespeed.conf.debug-filesize', '3', 'auto'),
(3798, 'litespeed.conf.debug-level', '', 'auto'),
(3797, 'litespeed.conf.debug-ips', '[\"127.0.0.1\"]', 'auto'),
(3796, 'litespeed.conf.debug', '0', 'auto'),
(3795, 'litespeed.conf.debug-disable_all', '', 'auto'),
(3794, 'litespeed.conf.util-no_https_vary', '', 'auto'),
(3793, 'litespeed.conf.util-instant_click', '', 'auto'),
(3792, 'litespeed.conf.esi-nonce', '[\"stats_nonce\",\"subscribe_nonce\"]', 'auto'),
(3791, 'litespeed.conf.esi-cache_commform', '1', 'auto'),
(3789, 'litespeed.conf.esi', '', 'auto'),
(3790, 'litespeed.conf.esi-cache_admbar', '1', 'auto'),
(3788, 'litespeed.conf.purge-hook_all', '[\"switch_theme\",\"wp_create_nav_menu\",\"wp_update_nav_menu\",\"wp_delete_nav_menu\",\"create_term\",\"edit_terms\",\"delete_term\",\"add_link\",\"edit_link\",\"delete_link\"]', 'auto'),
(3787, 'litespeed.conf.purge-timed_urls_time', '', 'auto'),
(3786, 'litespeed.conf.purge-timed_urls', '[]', 'auto'),
(3785, 'litespeed.conf.purge-post_pt', '1', 'auto'),
(3784, 'litespeed.conf.purge-post_t', '1', 'auto'),
(3783, 'litespeed.conf.purge-post_d', '', 'auto'),
(3782, 'litespeed.conf.purge-post_m', '1', 'auto'),
(3781, 'litespeed.conf.purge-post_y', '', 'auto'),
(3780, 'litespeed.conf.purge-post_a', '1', 'auto'),
(3776, 'litespeed.conf.purge-post_f', '1', 'auto'),
(3777, 'litespeed.conf.purge-post_h', '1', 'auto'),
(3778, 'litespeed.conf.purge-post_p', '1', 'auto'),
(3779, 'litespeed.conf.purge-post_pwrp', '1', 'auto'),
(3775, 'litespeed.conf.purge-post_all', '', 'auto'),
(3774, 'litespeed.conf.purge-stale', '', 'auto'),
(3773, 'litespeed.conf.purge-upgrade', '', 'auto'),
(3772, 'litespeed.conf.cache-vary_group', '[]', 'auto'),
(3771, 'litespeed.conf.cache-vary_cookies', '[]', 'auto'),
(3770, 'litespeed.conf.cache-ajax_ttl', '[]', 'auto'),
(3769, 'litespeed.conf.cache-login_cookie', '', 'auto'),
(3768, 'litespeed.conf.cache-ttl_status', '[\"404 3600\",\"500 600\"]', 'auto'),
(3767, 'litespeed.conf.cache-ttl_browser', '31557600', 'auto'),
(3766, 'litespeed.conf.cache-ttl_rest', '604800', 'auto'),
(3765, 'litespeed.conf.cache-ttl_feed', '604800', 'auto'),
(3764, 'litespeed.conf.cache-ttl_frontpage', '604800', 'auto'),
(3763, 'litespeed.conf.cache-ttl_priv', '1800', 'auto'),
(3761, 'litespeed.conf.cache-drop_qs', '[\"fbclid\",\"gclid\",\"utm*\",\"_ga\"]', 'auto'),
(3762, 'litespeed.conf.cache-ttl_pub', '604800', 'auto'),
(3760, 'litespeed.conf.cache-exc_roles', '[]', 'auto'),
(3759, 'litespeed.conf.cache-exc', '[]', 'auto'),
(3758, 'litespeed.conf.cache-priv_uri', '[]', 'auto'),
(3757, 'litespeed.conf.cache-force_pub_uri', '[]', 'auto'),
(3756, 'litespeed.conf.cache-force_uri', '[]', 'auto'),
(3755, 'litespeed.conf.cache-exc_tag', '[]', 'auto'),
(3754, 'litespeed.conf.cache-exc_cat', '[]', 'auto'),
(3753, 'litespeed.conf.cache-exc_qs', '[]', 'auto'),
(3750, 'litespeed.conf.cache-browser', '', 'auto'),
(3751, 'litespeed.conf.cache-exc_useragents', '[]', 'auto'),
(3752, 'litespeed.conf.cache-exc_cookies', '[]', 'auto'),
(3749, 'litespeed.conf.cache-mobile_rules', '[\"Mobile\",\"Android\",\"Silk\\/\",\"Kindle\",\"BlackBerry\",\"Opera Mini\",\"Opera Mobi\"]', 'auto'),
(3748, 'litespeed.conf.cache-mobile', '', 'auto'),
(3747, 'litespeed.conf.cache-page_login', '1', 'auto'),
(3745, 'litespeed.conf.cache-commenter', '1', 'auto'),
(3746, 'litespeed.conf.cache-rest', '1', 'auto'),
(3743, 'litespeed.conf.cache', '1', 'auto'),
(3744, 'litespeed.conf.cache-priv', '1', 'auto'),
(3732, 'litespeed.cloud._summary', '{\"curr_request.ver_check\":0,\"last_request.ver_check\":1765248567}', 'auto'),
(3733, 'litespeed.conf._version', '7.6.2', 'auto'),
(3734, 'litespeed.conf.hash', 'pYAH5LRiQ74v3cfo2Yymdb4NsJPV54Is', 'auto'),
(3735, 'litespeed.conf.api_key', '', 'auto'),
(3736, 'litespeed.conf.auto_upgrade', '', 'auto'),
(3737, 'litespeed.conf.server_ip', '', 'auto'),
(3738, 'litespeed.conf.guest', '', 'auto'),
(3739, 'litespeed.conf.guest_optm', '', 'auto'),
(3740, 'litespeed.conf.news', '1', 'auto'),
(3741, 'litespeed.conf.guest_uas', '[\"Lighthouse\",\"GTmetrix\",\"Google\",\"Pingdom\",\"bot\",\"spider\",\"PTST\",\"HeadlessChrome\"]', 'auto'),
(3742, 'litespeed.conf.guest_ips', '[\"208.70.247.157\",\"172.255.48.130\",\"172.255.48.131\",\"172.255.48.132\",\"172.255.48.133\",\"172.255.48.134\",\"172.255.48.135\",\"172.255.48.136\",\"172.255.48.137\",\"172.255.48.138\",\"172.255.48.139\",\"172.255.48.140\",\"172.255.48.141\",\"172.255.48.142\",\"172.255.48.143\",\"172.255.48.144\",\"172.255.48.145\",\"172.255.48.146\",\"172.255.48.147\",\"52.229.122.240\",\"104.214.72.101\",\"13.66.7.11\",\"13.85.24.83\",\"13.85.24.90\",\"13.85.82.26\",\"40.74.242.253\",\"40.74.243.13\",\"40.74.243.176\",\"104.214.48.247\",\"157.55.189.189\",\"104.214.110.135\",\"70.37.83.240\",\"65.52.36.250\",\"13.78.216.56\",\"52.162.212.163\",\"23.96.34.105\",\"65.52.113.236\",\"172.255.61.34\",\"172.255.61.35\",\"172.255.61.36\",\"172.255.61.37\",\"172.255.61.38\",\"172.255.61.39\",\"172.255.61.40\",\"104.41.2.19\",\"191.235.98.164\",\"191.235.99.221\",\"191.232.194.51\",\"52.237.235.185\",\"52.237.250.73\",\"52.237.236.145\",\"104.211.143.8\",\"104.211.165.53\",\"52.172.14.87\",\"40.83.89.214\",\"52.175.57.81\",\"20.188.63.151\",\"20.52.36.49\",\"52.246.165.153\",\"51.144.102.233\",\"13.76.97.224\",\"102.133.169.66\",\"52.231.199.170\",\"13.53.162.7\",\"40.123.218.94\"]', 'auto'),
(3509, '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.9.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.9.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.9-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.9-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.9\";s:7:\"version\";s:3:\"6.9\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1765268515;s:15:\"version_checked\";s:3:\"6.9\";s:12:\"translations\";a:0:{}}', 'off'),
(3938, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1765268516;s:8:\"response\";a:3:{s:23:\"elementor/elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"3.33.4\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3111597\";s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3111597\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3164133\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3164133\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:41:\"powerpack-elements/powerpack-elements.php\";O:8:\"stdClass\":17:{s:11:\"new_version\";s:7:\"2.12.15\";s:14:\"stable_version\";s:7:\"2.12.15\";s:4:\"name\";s:18:\"PowerPack Elements\";s:4:\"slug\";s:18:\"powerpack-elements\";s:3:\"url\";s:71:\"https://powerpackelements.com/downloads/powerpack-elements/?changelog=1\";s:12:\"last_updated\";s:19:\"2025-11-27 10:06:14\";s:8:\"homepage\";s:29:\"https://powerpackelements.com\";s:7:\"package\";s:218:\"https://powerpackelements.com/edd-sl/package_download/MTc2NTQ2MTExNTo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjA1NWQ1NTllNDljOWQxNTc1MjczNjE3ZWExZGVjOGUwOmh0dHBzQC8vbXJhcmlmLm1lL3NlY3VyZXN3aXBlc29sdXRpb25zOjA=\";s:13:\"download_link\";s:218:\"https://powerpackelements.com/edd-sl/package_download/MTc2NTQ2MTExNTo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjA1NWQ1NTllNDljOWQxNTc1MjczNjE3ZWExZGVjOGUwOmh0dHBzQC8vbXJhcmlmLm1lL3NlY3VyZXN3aXBlc29sdXRpb25zOjA=\";s:8:\"sections\";O:8:\"stdClass\":1:{s:9:\"changelog\";s:131:\"<p>Visit <a href=\"https://powerpackelements.com/change-logs/\" target=\"_blank\" rel=\"noopener\">changelogs page</a> for details.</p>\n\";}s:7:\"banners\";O:8:\"stdClass\":2:{s:4:\"high\";s:0:\"\";s:3:\"low\";s:0:\"\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:107:\"https://mrarif.me/secureswipesolutions/wp-content/plugins/powerpack-elements/assets/images/icon-128x128.png\";s:2:\"2x\";s:107:\"https://mrarif.me/secureswipesolutions/wp-content/plugins/powerpack-elements/assets/images/icon-256x256.png\";s:7:\"default\";s:107:\"https://mrarif.me/secureswipesolutions/wp-content/plugins/powerpack-elements/assets/images/icon-256x256.png\";}s:12:\"contributors\";O:8:\"stdClass\":5:{s:16:\"ideaboxcreations\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:16:\"ideaboxcreations\";s:7:\"profile\";s:41:\"//profiles.wordpress.org/ideaboxcreations\";s:6:\"avatar\";s:61:\"https://wordpress.org/grav-redirect.php?user=ideaboxcreations\";}s:10:\"bloompixel\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:10:\"bloompixel\";s:7:\"profile\";s:35:\"//profiles.wordpress.org/bloompixel\";s:6:\"avatar\";s:55:\"https://wordpress.org/grav-redirect.php?user=bloompixel\";}s:10:\"simrandeep\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:10:\"simrandeep\";s:7:\"profile\";s:35:\"//profiles.wordpress.org/simrandeep\";s:6:\"avatar\";s:55:\"https://wordpress.org/grav-redirect.php?user=simrandeep\";}s:7:\"ibachal\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:7:\"ibachal\";s:7:\"profile\";s:32:\"//profiles.wordpress.org/ibachal\";s:6:\"avatar\";s:52:\"https://wordpress.org/grav-redirect.php?user=ibachal\";}s:13:\"puneetsahalot\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:13:\"puneetsahalot\";s:7:\"profile\";s:38:\"//profiles.wordpress.org/puneetsahalot\";s:6:\"avatar\";s:58:\"https://wordpress.org/grav-redirect.php?user=puneetsahalot\";}}s:6:\"tested\";s:5:\"6.7.1\";s:9:\"changelog\";a:1:{i:0;s:131:\"<p>Visit <a href=\"https://powerpackelements.com/change-logs/\" target=\"_blank\" rel=\"noopener\">changelogs page</a> for details.</p>\n\";}s:6:\"plugin\";s:41:\"powerpack-elements/powerpack-elements.php\";s:2:\"id\";s:41:\"powerpack-elements/powerpack-elements.php\";}s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":17:{s:14:\"stable_version\";s:6:\"3.33.2\";s:12:\"last_updated\";s:19:\"2025-12-03 12:53:02\";s:11:\"new_version\";s:6:\"3.33.2\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:3:\"6.9\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:393:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvc2VjdXJlc3dpcGVzb2x1dGlvbnMiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzY0Nzg5MzA0LCJleHAiOjE3NjQ4NzU3MDR9.Ug3ANSDmKECeTXObaQRjDPDfAbCMmBNLd5wN2dTJIKg/package_download\";s:13:\"download_link\";s:393:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvc2VjdXJlc3dpcGVzb2x1dGlvbnMiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzY0Nzg5MzA0LCJleHAiOjE3NjQ4NzU3MDR9.Ug3ANSDmKECeTXObaQRjDPDfAbCMmBNLd5wN2dTJIKg/package_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:12:{s:11:\"new_version\";s:5:\"3.7.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:3:\"6.9\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:370:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvc2VjdXJlc3dpcGVzb2x1dGlvbnMiLCJpYXQiOjE3NjQ3ODkzMDQsImV4cCI6MTc2NDg3NTcwNH0.nurUeyIgcqU8XXm-KAHj4SoWkV8DnXZ37QwtuTM37iU/previous_download\";s:13:\"download_link\";s:370:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvc2VjdXJlc3dpcGVzb2x1dGlvbnMiLCJpYXQiOjE3NjQ3ODkzMDQsImV4cCI6MTc2NDg3NTcwNH0.nurUeyIgcqU8XXm-KAHj4SoWkV8DnXZ37QwtuTM37iU/previous_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:27:{i:0;s:5:\"he_IL\";i:1;s:5:\"nl_NL\";i:2;s:5:\"en_GB\";i:3;s:5:\"en_NZ\";i:4;s:5:\"en_ZA\";i:5;s:5:\"en_AU\";i:6;s:5:\"en_CA\";i:7;s:5:\"sv_SE\";i:8;s:5:\"da_DK\";i:9;s:5:\"fr_FR\";i:10;s:5:\"nl_NL\";i:11;s:5:\"nb_NO\";i:12;s:5:\"de_AT\";i:13;s:2:\"fi\";i:14;s:5:\"it_IT\";i:15;s:5:\"nn_NO\";i:16;s:5:\"de_CH\";i:17;s:5:\"en_GB\";i:18;s:5:\"is_IS\";i:19;s:2:\"ga\";i:20;s:5:\"fr_BE\";i:21;s:5:\"nl_BE\";i:22;s:3:\"ast\";i:23;s:5:\"lb_LU\";i:24;s:5:\"es_ES\";i:25;s:5:\"pt_PT\";i:26;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}s:5:\"cloud\";b:0;s:6:\"plugin\";s:31:\"elementor-pro/elementor-pro.php\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:31:\"backup-backup/backup-backup.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/backup-backup\";s:4:\"slug\";s:13:\"backup-backup\";s:6:\"plugin\";s:31:\"backup-backup/backup-backup.php\";s:11:\"new_version\";s:5:\"2.0.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/backup-backup/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/backup-backup.2.0.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/backup-backup/assets/icon-128x128.png?rev=2995566\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/backup-backup/assets/banner-772x250.png?rev=2429136\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:35:\"litespeed-cache/litespeed-cache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/litespeed-cache\";s:4:\"slug\";s:15:\"litespeed-cache\";s:6:\"plugin\";s:35:\"litespeed-cache/litespeed-cache.php\";s:11:\"new_version\";s:5:\"7.6.2\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/litespeed-cache/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/litespeed-cache.7.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/litespeed-cache/assets/icon-256x256.png?rev=2554181\";s:2:\"1x\";s:68:\"https://ps.w.org/litespeed-cache/assets/icon-128x128.png?rev=2554181\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/litespeed-cache/assets/banner-1544x500.png?rev=2554181\";s:2:\"1x\";s:70:\"https://ps.w.org/litespeed-cache/assets/banner-772x250.png?rev=2554181\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}}s:7:\"checked\";a:5:{s:31:\"backup-backup/backup-backup.php\";s:5:\"2.0.0\";s:23:\"elementor/elementor.php\";s:6:\"3.33.0\";s:31:\"elementor-pro/elementor-pro.php\";s:6:\"3.33.2\";s:35:\"litespeed-cache/litespeed-cache.php\";s:5:\"7.6.2\";s:41:\"powerpack-elements/powerpack-elements.php\";s:7:\"2.12.14\";}}', 'off');
INSERT INTO `wps_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(2777, 'astra_partials_config_cache', 'a:2:{s:8:\"settings\";a:1114:{s:46:\"section-header-builder-layout-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[cloned-component-track]\";a:4:{s:7:\"default\";a:12:{s:13:\"header-button\";i:2;s:13:\"footer-button\";i:2;s:11:\"header-html\";i:2;s:11:\"footer-html\";i:2;s:11:\"header-menu\";i:2;s:13:\"header-widget\";i:4;s:13:\"footer-widget\";i:4;s:19:\"header-social-icons\";i:1;s:19:\"footer-social-icons\";i:1;s:14:\"header-divider\";i:0;s:14:\"footer-divider\";i:0;s:13:\"removed-items\";a:0:{}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[builder-header]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[header-desktop-items]\";a:4:{s:7:\"default\";a:4:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:11:\"mobile-menu\";}}s:5:\"above\";a:5:{s:10:\"above_left\";a:0:{}s:17:\"above_left_center\";a:0:{}s:12:\"above_center\";a:0:{}s:18:\"above_right_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:5:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:19:\"primary_left_center\";a:0:{}s:14:\"primary_center\";a:0:{}s:20:\"primary_right_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:6:\"menu-1\";}}s:5:\"below\";a:5:{s:10:\"below_left\";a:0:{}s:17:\"below_left_center\";a:0:{}s:12:\"below_center\";a:0:{}s:18:\"below_right_center\";a:0:{}s:11:\"below_right\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-preset-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-desktop-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-mobile-items]\";a:4:{s:7:\"default\";a:4:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:11:\"mobile-menu\";}}s:5:\"above\";a:3:{s:10:\"above_left\";a:0:{}s:12:\"above_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:3:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:14:\"primary_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:14:\"mobile-trigger\";}}s:5:\"below\";a:3:{s:10:\"below_left\";a:0:{}s:12:\"below_center\";a:0:{}s:11:\"below_right\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-mobile-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-mobile-popup-items]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-transparent-link-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-transparant-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hb-header-main-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-builder-layout-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-builder-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[button-preset-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[theme-button-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[theme-button-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[theme-button-border-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[theme-button-border-group-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:56:\"astra-settings[theme-button-border-group-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:28:\"astra-settings[button-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-4)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[button-h-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-4)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:31:\"astra-settings[button-bg-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-0)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[button-bg-h-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-1)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[theme-button-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:15;s:5:\"right\";i:30;s:6:\"bottom\";i:15;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";i:14;s:5:\"right\";i:28;s:6:\"bottom\";i:14;s:4:\"left\";i:28;}s:6:\"mobile\";a:4:{s:3:\"top\";i:12;s:5:\"right\";i:24;s:6:\"bottom\";i:12;s:4:\"left\";i:24;}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[theme-button-border-group-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[button-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[secondary-button-preset-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[secondary-theme-button-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[secondary-theme-button-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[secondary-theme-button-border-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[secondary-theme-button-border-group-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:66:\"astra-settings[secondary-theme-button-border-group-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:38:\"astra-settings[secondary-button-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[secondary-button-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[secondary-button-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[secondary-button-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[secondary-theme-button-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:13;s:5:\"right\";i:30;s:6:\"bottom\";i:13;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";i:12;s:5:\"right\";i:28;s:6:\"bottom\";i:12;s:4:\"left\";i:28;}s:6:\"mobile\";a:4:{s:3:\"top\";i:10;s:5:\"right\";i:24;s:6:\"bottom\";i:10;s:4:\"left\";i:24;}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:63:\"astra-settings[secondary-theme-button-border-group-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:5:\"right\";i:2;s:6:\"bottom\";i:2;s:4:\"left\";i:2;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[secondary-button-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:34:\"section-secondary-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-content-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[narrow-container-max-width]\";a:4:{s:7:\"default\";i:750;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[different-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-header-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:37:\"astra-settings[different-mobile-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[mobile-header-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:33:\"astra-settings[use-logo-svg-icon]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[logo-svg-icon]\";a:4:{s:7:\"default\";a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:22:\"sanitize_logo_svg_icon\";}}s:39:\"astra-settings[logo-svg-site-title-gap]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:1:\"5\";s:6:\"tablet\";s:1:\"5\";s:6:\"mobile\";s:1:\"5\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-header-responsive-logo-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[display-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[display-site-tagline-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:0;s:6:\"tablet\";i:0;s:6:\"mobile\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[logo-title-inline]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[site-identity-title-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-color-site-title]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[logo-svg-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[logo-svg-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[logo-svg-icon-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-color-h-site-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-color-site-tagline]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[site-icon-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[blog-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[blog-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-post-content]\";a:4:{s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[blog-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[blog-layout]\";a:4:{s:7:\"default\";s:13:\"blog-layout-4\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[blog-post-per-page]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[archive-post-content-structure-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-post-structure]\";a:4:{s:7:\"default\";a:5:{i:0;s:5:\"image\";i:1;s:8:\"category\";i:2;s:5:\"title\";i:3;s:10:\"title-meta\";i:4;s:7:\"excerpt\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-meta-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[blog-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[blog-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:46:\"astra-settings[blog-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[blog-custom-image-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-hover-effect]\";a:4:{s:7:\"default\";s:7:\"zoom-in\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:31:\"astra-settings[blog-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[blog-post-color-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[post-card-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[post-card-border-radius]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:6;s:5:\"right\";i:6;s:6:\"bottom\";i:6;s:4:\"left\";i:6;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-category-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[blog-tag-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[blog-post-meta-divider-type]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[blog-meta-category-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-meta-tag-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:29:\"section-blog-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[blog-meta]\";a:4:{s:7:\"default\";a:2:{i:0;s:6:\"author\";i:1;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-single-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-single-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[single-content-images-shadow]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[section-blog-single-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[single-post-outside-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[single-post-inside-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:36:\"section-blog-single-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[site-sidebar-layout]\";a:4:{s:7:\"default\";s:10:\"no-sidebar\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-sidebar-width]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[site-sidebar-width-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:35:\"astra-settings[site-sticky-sidebar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-sidebar-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[ast-site-content-layout]\";a:4:{s:7:\"default\";s:22:\"normal-width-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-content-style]\";a:4:{s:7:\"default\";s:5:\"boxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[surface-colors-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[site-layout-outside-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[content-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[ast-site-layout-button-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[global-color-palette]\";a:4:{s:7:\"default\";a:2:{s:7:\"palette\";a:9:{i:0;s:7:\"#4a9924\";i:1;s:7:\"#88ca3f\";i:2;s:7:\"#000b1b\";i:3;s:7:\"#4b4b53\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F0F5FA\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}s:4:\"flag\";b:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:20:\"astra-color-palettes\";a:4:{s:7:\"default\";a:5:{s:14:\"currentPalette\";s:9:\"palette_1\";s:8:\"palettes\";a:4:{s:9:\"palette_1\";a:9:{i:0;s:7:\"#4a9924\";i:1;s:7:\"#88ca3f\";i:2;s:7:\"#000b1b\";i:3;s:7:\"#4b4b53\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F0F5FA\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}s:9:\"palette_2\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:9:\"palette_3\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:9:\"palette_4\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:7:\"presets\";a:11:{s:3:\"Oak\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:5:\"Viola\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:5:\"Cedar\";a:9:{i:0;s:7:\"#DD183B\";i:1;s:7:\"#CC1939\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#3A3A3A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FFEDE6\";i:6;s:7:\"#140609\";i:7;s:7:\"#FFD1BF\";i:8;s:7:\"#222222\";}s:6:\"Willow\";a:9:{i:0;s:7:\"#54B435\";i:1;s:7:\"#379237\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#2F3B40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDFBE2\";i:6;s:7:\"#0C1406\";i:7;s:7:\"#D5EAD8\";i:8;s:7:\"#222222\";}s:4:\"Lily\";a:9:{i:0;s:7:\"#DCA54A\";i:1;s:7:\"#D09A40\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#4A4A4A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FAF5E5\";i:6;s:7:\"#141004\";i:7;s:7:\"#F0E6C5\";i:8;s:7:\"#222222\";}s:4:\"Rose\";a:9:{i:0;s:7:\"#FB5FAB\";i:1;s:7:\"#EA559D\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FCEEF5\";i:6;s:7:\"#140610\";i:7;s:7:\"#FAD8E9\";i:8;s:7:\"#222222\";}s:4:\"Sage\";a:9:{i:0;s:7:\"#1B9C85\";i:1;s:7:\"#178E79\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDF6EE\";i:6;s:7:\"#06140C\";i:7;s:7:\"#D4F3D7\";i:8;s:7:\"#222222\";}s:5:\"Flare\";a:9:{i:0;s:7:\"#FD9800\";i:1;s:7:\"#E98C00\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF9E1\";i:6;s:7:\"#141006\";i:7;s:7:\"#F9F0C8\";i:8;s:7:\"#222222\";}s:5:\"Maple\";a:9:{i:0;s:7:\"#FF6210\";i:1;s:7:\"#F15808\";i:2;s:7:\"#1C0D0A\";i:3;s:7:\"#353535\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF1E4\";i:6;s:7:\"#140B06\";i:7;s:7:\"#E5D7D1\";i:8;s:7:\"#222222\";}s:5:\"Birch\";a:9:{i:0;s:7:\"#737880\";i:1;s:7:\"#65696F\";i:2;s:7:\"#151616\";i:3;s:7:\"#393C40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F6F6F6\";i:6;s:7:\"#232529\";i:7;s:7:\"#F1F0F0\";i:8;s:7:\"#222222\";}s:4:\"Dark\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:11:\"presetNames\";a:4:{s:9:\"palette_1\";N;s:9:\"palette_2\";s:3:\"Oak\";s:9:\"palette_3\";s:5:\"Viola\";s:9:\"palette_4\";s:4:\"Dark\";}s:4:\"flag\";b:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[theme-color-divider-reset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[theme-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-0)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[base-link-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[link-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-0)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[link-h-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-1)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[text-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-3)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[border-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-7)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[ast-blog-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[font-size-page-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:20;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[font-size-post-meta]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:13;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-size-post-tax]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:14;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[ast-body-font-settings-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-body-font-settings]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[body-font-family]\";a:4:{s:7:\"default\";s:21:\"\'Poppins\', sans-serif\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:33:\"astra-settings[body-font-variant]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_font_variant\";}}s:32:\"astra-settings[body-font-weight]\";a:4:{s:7:\"default\";s:3:\"400\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:30:\"astra-settings[font-size-body]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:17;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[body-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:4:\"1.65\";s:16:\"line-height-unit\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[ast-headings-font-settings]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-headings-font-settings-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[headings-font-family]\";a:4:{s:7:\"default\";s:19:\"\'Rubik\', sans-serif\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:36:\"astra-settings[headings-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:37:\"astra-settings[headings-font-variant]\";a:4:{s:7:\"default\";s:15:\"100,400,600,900\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_font_variant\";}}s:36:\"astra-settings[headings-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[para-margin-bottom]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[underline-content-links]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h1-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h2-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h3-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h4-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h5-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h6-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[wp-blocks-ui]\";a:4:{s:7:\"default\";s:7:\"comfort\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[wp-blocks-global-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[wp-blocks-ui-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:33:\"comments-section-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[comments-single-section-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[enable-comments-area]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[comments-box-placement]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[comments-box-container-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[comment-form-position]\";a:4:{s:7:\"default\";s:5:\"below\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-comments-border-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-comments-border-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-comments-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[ast-sub-section-comments-border-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-sub-section-comments-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-sub-section-comments-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";i:2;s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:47:\"astra-settings[ast-sub-section-comments-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:2;s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:30:\"astra-settings[font-family-h1]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h1]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:63;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h1]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.4\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h2]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h2]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:43;s:6:\"tablet\";i:25;s:6:\"mobile\";i:25;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h2]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.3\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h3]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h3]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h3]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:31;s:6:\"tablet\";i:20;s:6:\"mobile\";i:20;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h3]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.3\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h4]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h4]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h4]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:27;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h4]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.2\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h5]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h5]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h5]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:23;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h5]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.2\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h6]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h6]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h6]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:19;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h6]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:4:\"1.25\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-single-post-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:24:\"astra-typography-presets\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[enable-scroll-to-id]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[site-accessibility-toggle]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[site-accessibility-highlight-type]\";a:4:{s:7:\"default\";s:6:\"dotted\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[site-accessibility-highlight-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[site-accessibility-highlight-input-type]\";a:4:{s:7:\"default\";s:7:\"disable\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[site-accessibility-highlight-input-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[astra-pro-section-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[single-e-floating-buttons-ast-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[single-e-floating-buttons-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[single-e-floating-buttons-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[single-e-floating-buttons-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[page-single-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[page-single-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"ast-dynamic-single-e-floating-buttons-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[ast-single-e-floating-buttons-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-single-e-floating-buttons-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-e-floating-buttons-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:43:\"ast-dynamic-single-e-floating-buttons-title\";i:1;s:42:\"ast-dynamic-single-e-floating-buttons-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:94:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-position-layout-1]\";a:4:{s:7:\"default\";s:6:\"behind\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:94:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-position-layout-2]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:87:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-width-type]\";a:4:{s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:87:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:92:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:95:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:96:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:101:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-custom-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:77:\"astra-settings[ast-dynamic-single-e-floating-buttons-remove-featured-padding]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:76:\"astra-settings[ast-dynamic-single-e-floating-buttons-featured-as-background]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:77:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:76:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-clone-tracker]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-e-floating-buttons-structural-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:79:\"astra-settings[ast-dynamic-single-e-floating-buttons-structural-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-e-floating-buttons-metadata]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:6:\"author\";i:2;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-e-floating-buttons-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-e-floating-buttons-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[ast-dynamic-single-e-floating-buttons-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:74:\"astra-settings[ast-dynamic-single-e-floating-buttons-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:66:\"astra-settings[ast-dynamic-single-e-floating-buttons-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-background]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:77:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:83:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:82:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:69:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:82:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:61:\"ast-dynamic-single-e-floating-buttons-parent-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[single-posttype-e-floating-buttons-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[single-posttype-e-floating-buttons-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:57:\"astra-settings[single-posttype-e-floating-buttons-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:62:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-1]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-1-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-2]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-2-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[single-post-ast-content-layout]\";a:4:{s:7:\"default\";s:22:\"narrow-width-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-post-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-post-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-post-sidebar-style]\";a:4:{s:7:\"default\";s:5:\"boxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"ast-dynamic-single-post-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-single-post-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[ast-dynamic-single-post-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-post-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[ast-dynamic-single-post-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:29:\"ast-dynamic-single-post-title\";i:1;s:28:\"ast-dynamic-single-post-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-post-article-featured-image-position-layout-1]\";a:4:{s:7:\"default\";s:6:\"behind\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-post-article-featured-image-position-layout-2]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-post-article-featured-image-width-type]\";a:4:{s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-post-article-featured-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:78:\"astra-settings[ast-dynamic-single-post-article-featured-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-single-post-article-featured-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:82:\"astra-settings[ast-dynamic-single-post-article-featured-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:87:\"astra-settings[ast-dynamic-single-post-article-featured-image-custom-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-post-article-featured-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-post-remove-featured-padding]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-post-featured-as-background]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-post-banner-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-post-taxonomy-clone-tracker]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-post-structural-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[ast-dynamic-single-post-structural-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-dynamic-single-post-metadata]\";a:4:{s:7:\"default\";a:2:{i:0;s:6:\"author\";i:1;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-post-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-post-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-single-post-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[ast-dynamic-single-post-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-single-post-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-post-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[ast-dynamic-single-post-elements-gap]\";a:4:{s:7:\"default\";i:15;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-background]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-post-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:69:\"astra-settings[ast-dynamic-single-post-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-post-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-post-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-post-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:57:\"astra-settings[ast-dynamic-single-post-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:55:\"astra-settings[ast-dynamic-single-post-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-post-banner-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-post-meta-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-post-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:13;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-post-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:54:\"astra-settings[ast-dynamic-single-post-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[ast-dynamic-single-post-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-single-post-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-dynamic-single-post-taxonomy-1]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-taxonomy-1-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-dynamic-single-post-taxonomy-2]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-taxonomy-2-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[single-page-ast-content-layout]\";a:4:{s:7:\"default\";s:22:\"normal-width-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-page-content-style]\";a:4:{s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-page-sidebar-layout]\";a:4:{s:7:\"default\";s:10:\"no-sidebar\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-page-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"ast-dynamic-single-page-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-single-page-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[ast-dynamic-single-page-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-page-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[ast-dynamic-single-page-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:29:\"ast-dynamic-single-page-image\";i:1;s:29:\"ast-dynamic-single-page-title\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-page-article-featured-image-position-layout-1]\";a:4:{s:7:\"default\";s:6:\"behind\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-page-article-featured-image-position-layout-2]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-page-article-featured-image-width-type]\";a:4:{s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-page-article-featured-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:78:\"astra-settings[ast-dynamic-single-page-article-featured-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-single-page-article-featured-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:82:\"astra-settings[ast-dynamic-single-page-article-featured-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:87:\"astra-settings[ast-dynamic-single-page-article-featured-image-custom-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-page-article-featured-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-page-remove-featured-padding]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-page-featured-as-background]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-page-banner-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-page-taxonomy-clone-tracker]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-page-structural-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[ast-dynamic-single-page-structural-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-dynamic-single-page-metadata]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:6:\"author\";i:2;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-page-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-page-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-single-page-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[ast-dynamic-single-page-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-single-page-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-page-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[ast-dynamic-single-page-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-background]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-page-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:69:\"astra-settings[ast-dynamic-single-page-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-page-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-page-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-page-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:57:\"astra-settings[ast-dynamic-single-page-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:55:\"astra-settings[ast-dynamic-single-page-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-page-banner-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-page-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-page-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-page-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:54:\"astra-settings[ast-dynamic-single-page-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:76:\"astra-settings[ast-dynamic-single-page-disable-structure-meta-on-front-page]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"ast-dynamic-single-page-parent-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-single-page-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-single-page-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-single-page-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:61:\"astra-settings[archive-e-floating-buttons-ast-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[archive-e-floating-buttons-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[archive-e-floating-buttons-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[archive-e-floating-buttons-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"ast-dynamic-archive-e-floating-buttons-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[ast-archive-e-floating-buttons-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[ast-dynamic-archive-e-floating-buttons-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:74:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-archive-e-floating-buttons-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:44:\"ast-dynamic-archive-e-floating-buttons-title\";i:1;s:50:\"ast-dynamic-archive-e-floating-buttons-description\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-title-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-description-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[ast-dynamic-archive-e-floating-buttons-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-archive-e-floating-buttons-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-archive-e-floating-buttons-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-image-type]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-custom-bg]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:78:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:84:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:83:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:69:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:70:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:69:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:47:\"astra-settings[archive-post-ast-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[archive-post-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[archive-post-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[archive-post-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"ast-dynamic-archive-post-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-archive-post-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[ast-dynamic-archive-post-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-archive-post-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-dynamic-archive-post-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:30:\"ast-dynamic-archive-post-title\";i:1;s:36:\"ast-dynamic-archive-post-description\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-archive-post-custom-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[ast-dynamic-archive-post-custom-title-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-archive-post-custom-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-archive-post-custom-description-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[ast-dynamic-archive-post-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-archive-post-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-archive-post-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-archive-post-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-image-type]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-archive-post-banner-custom-bg]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-archive-post-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-archive-post-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-archive-post-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:69:\"astra-settings[ast-dynamic-archive-post-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-archive-post-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:57:\"astra-settings[ast-dynamic-archive-post-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:55:\"astra-settings[ast-dynamic-archive-post-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-archive-post-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:58:\"astra-settings[ast-dynamic-archive-post-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:56:\"astra-settings[ast-dynamic-archive-post-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-archive-post-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[ast-dynamic-archive-post-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[ast-dynamic-archive-post-banner-on-blog]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-search-page-title-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-search-page-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-search-page-title-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[section-search-page-title-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[section-search-page-title-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:31:\"section-search-page-title-title\";i:1;s:36:\"section-search-page-title-breadcrumb\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-search-page-title-custom-title]\";a:4:{s:7:\"default\";s:19:\"Search Results for:\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:66:\"astra-settings[section-search-page-title-found-custom-description]\";a:4:{s:7:\"default\";s:44:\"Here are the search results for your search.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[section-search-page-title-not-found-custom-description]\";a:4:{s:7:\"default\";s:85:\"Sorry, but we could not find anything related to your search terms. Please try again.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[section-search-page-title-horizontal-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[section-search-page-title-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-search-page-title-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-search-page-title-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-image-type]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-search-page-title-banner-custom-bg]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[section-search-page-title-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[section-search-page-title-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[section-search-page-title-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[section-search-page-title-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-search-page-title-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:58:\"astra-settings[section-search-page-title-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:56:\"astra-settings[section-search-page-title-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-search-page-title-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:59:\"astra-settings[section-search-page-title-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:57:\"astra-settings[section-search-page-title-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:32;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-search-page-title-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-search-page-title-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[ast-search-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[ast-search-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[ast-search-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[ast-search-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[ast-search-results-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[ast-search-results-per-page]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-search-live-search]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[ast-search-live-search-post-types]\";a:4:{s:7:\"default\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-section-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"related-posts-section-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[enable-related-posts]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[related-posts-title]\";a:4:{s:7:\"default\";s:13:\"Related Posts\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[releted-posts-title-alignment]\";a:4:{s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[related-posts-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:14:\"featured-image\";i:1;s:10:\"title-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[related-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-meta-structure]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:8:\"category\";i:2;s:6:\"author\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-image-ratio-type]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[related-posts-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:55:\"astra-settings[related-posts-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:60:\"astra-settings[related-posts-custom-image-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[related-posts-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-category-style]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[related-posts-tag-style]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[enable-related-posts-excerpt]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-excerpt-count]\";a:4:{s:7:\"default\";i:25;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-total-count]\";a:4:{s:7:\"default\";i:2;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-grid-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-query-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[related-posts-based-on]\";a:4:{s:7:\"default\";s:10:\"categories\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[related-posts-order-by]\";a:4:{s:7:\"default\";s:4:\"date\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[related-posts-order]\";a:4:{s:7:\"default\";s:3:\"asc\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-box-placement]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-outside-location]\";a:4:{s:7:\"default\";s:5:\"above\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-container-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[related-posts-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[related-posts-section-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[related-posts-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[related-posts-content-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-text-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-title-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[related-posts-background-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:40:\"astra-settings[related-posts-meta-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-meta-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[related-posts-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:47:\"astra-settings[related-posts-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"500\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:45:\"astra-settings[related-posts-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"20\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[related-posts-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.5\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[related-posts-section-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:55:\"astra-settings[related-posts-section-title-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:53:\"astra-settings[related-posts-section-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"26\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[related-posts-section-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.6\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:46:\"astra-settings[related-posts-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:44:\"astra-settings[related-posts-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"14\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.6\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-content-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:49:\"astra-settings[related-posts-content-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:47:\"astra-settings[related-posts-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-content-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-sub-section-related-posts-border-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-sub-section-related-posts-border-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-sub-section-related-posts-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:59:\"astra-settings[ast-sub-section-related-posts-border-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-related-posts-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-related-posts-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";d:2.5;s:5:\"right\";d:2.5;s:6:\"bottom\";d:2.5;s:4:\"left\";d:2.5;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:52:\"astra-settings[ast-sub-section-related-posts-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:2;s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[transparent-header-logo-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[hba-transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[hbb-transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[transparent-header-color-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[transparent-header-color-h-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-menu-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[transparent-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-submenu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-submenu-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-submenu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[transparent-content-section-link-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[transparent-content-section-link-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[transparent-header-enable]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[transparent-header-disable-on]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[transparent-header-disable-404-page]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-disable-search-page]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-disable-archive-pages]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[transparent-header-disable-index]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[transparent-header-disable-latest-posts-index]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[transparent-header-disable-page]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[transparent-header-disable-posts]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[transparent-header-on-devices]\";a:4:{s:7:\"default\";s:4:\"both\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[different-transparent-logo]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[transparent-header-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:49:\"astra-settings[different-transparent-retina-logo]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-header-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:45:\"astra-settings[transparent-header-logo-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:150;s:6:\"tablet\";i:120;s:6:\"mobile\";i:100;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[transparent-header-main-sep]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-header-main-sep-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[divider-sec-transparent-styling]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[transparent-header-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-header-colors-menu]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-header-colors-submenu]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"section-transparent-header-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[transparent-header-social-text-colors-content]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[transparent-header-social-background-colors-content]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[transparent-header-social-icons-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-header-social-icons-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-social-icons-bg-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[transparent-header-social-icons-bg-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-header-html-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[transparent-header-html-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[transparent-header-html-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-html-link-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-search-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:62:\"astra-settings[transparent-header-search-box-background-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:53:\"astra-settings[transparent-header-buttons-text-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[transparent-header-buttons-background-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-header-buttons-border-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-header-button-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[transparent-header-button-text-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[transparent-header-button-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-button-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[transparent-header-button-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-button-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-account-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:51:\"astra-settings[transparent-account-type-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:51:\"astra-settings[transparent-header-toggle-btn-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-toggle-btn-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-toggle-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[breadcrumb-position]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[breadcrumb-position-none-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:49:\"astra-settings[breadcrumb-disable-layout-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[breadcrumb-disable-on]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[breadcrumb-disable-home-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[breadcrumb-disable-blog-posts-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[breadcrumb-disable-search]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[breadcrumb-disable-archive]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[breadcrumb-disable-single-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[breadcrumb-disable-single-post]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[breadcrumb-disable-singular]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[breadcrumb-disable-404-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[breadcrumb-alignment]\";a:4:{s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[breadcrumb-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[breadcrumb-separator-selector]\";a:4:{s:7:\"default\";s:5:\"\\003E\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[breadcrumb-separator]\";a:4:{s:7:\"default\";s:5:\"\\00bb\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"section-breadcrumb-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[breadcrumb-color-section-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[breadcrumb-bg-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[breadcrumb-active-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[breadcrumb-separator-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-breadcrumb-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[breadcrumb-text-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[breadcrumb-hover-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[section-breadcrumb-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[breadcrumb-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:38:\"astra-settings[breadcrumb-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:36:\"astra-settings[breadcrumb-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[breadcrumb-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[scroll-to-top-enable]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[scroll-to-top-on-devices]\";a:4:{s:7:\"default\";s:4:\"both\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[scroll-to-top-icon-position]\";a:4:{s:7:\"default\";s:5:\"right\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[scroll-to-top-icon-size]\";a:4:{s:7:\"default\";i:15;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[scroll-on-top-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[scroll-on-top-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[scroll-to-top-icon-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[scroll-to-top-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:43:\"astra-settings[scroll-to-top-icon-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:42:\"astra-settings[scroll-to-top-icon-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:45:\"astra-settings[scroll-to-top-icon-h-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:38:\"section-scroll-to-top-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[enable-scroll-to-top-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:34:\"astra-settings[heading-base-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:38:\"astra-settings[button-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[secondary-button-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-family-button]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:44:\"astra-settings[secondary-font-family-button]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:34:\"astra-settings[font-weight-button]\";a:4:{s:7:\"default\";s:3:\"500\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:44:\"astra-settings[secondary-font-weight-button]\";a:4:{s:7:\"default\";s:3:\"500\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:32:\"astra-settings[font-size-button]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"16\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[secondary-font-size-button]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"16\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-extras-button]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";i:1;s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[secondary-font-extras-button]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";i:1;s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"section-footer-builder-layout-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[builder-footer]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[footer-bg-obj-responsive-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:36:\"astra-settings[footer-desktop-items]\";a:4:{s:7:\"default\";a:3:{s:5:\"above\";a:5:{s:7:\"above_1\";a:0:{}s:7:\"above_2\";a:0:{}s:7:\"above_3\";a:0:{}s:7:\"above_4\";a:0:{}s:7:\"above_5\";a:0:{}}s:7:\"primary\";a:5:{s:9:\"primary_1\";a:0:{}s:9:\"primary_2\";a:0:{}s:9:\"primary_3\";a:0:{}s:9:\"primary_4\";a:0:{}s:9:\"primary_5\";a:0:{}}s:5:\"below\";a:5:{s:7:\"below_1\";a:1:{i:0;s:9:\"copyright\";}s:7:\"below_2\";a:0:{}s:7:\"below_3\";a:0:{}s:7:\"below_4\";a:0:{}s:7:\"below_5\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[footer-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-builder-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-footer-builder-layout-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-footer-builder-layout-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:52:\"astra-settings[section-footer-builder-layout-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"section-above-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hba-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:55:\"var( --ast-global-color-primary, --ast-global-color-4 )\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[hba-header-bottom-border-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:36:\"astra-settings[hba-header-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-above-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-above-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-below-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:60;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hbb-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[hbb-header-bottom-border-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:36:\"astra-settings[hbb-header-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-below-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-below-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-header-widget-1-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"astra-settings[header-widget-1-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-widget-1-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-widget-1-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-widget-1-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-widget-1-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-widget-1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-widget-1-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-header-widget-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-header-widget-2-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"astra-settings[header-widget-2-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-widget-2-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-widget-2-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-widget-2-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-widget-2-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-widget-2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-widget-2-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-header-widget-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"section-header-mobile-trigger-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-trigger-icon]\";a:4:{s:7:\"default\";s:4:\"menu\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-btn-style]\";a:4:{s:7:\"default\";s:7:\"minimal\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[mobile-header-menu-label]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-btn-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[mobile-header-toggle-icon-size]\";a:4:{s:7:\"default\";i:20;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[mobile-header-toggle-btn-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[mobile-header-toggle-btn-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:1;s:5:\"right\";i:1;s:6:\"bottom\";i:1;s:4:\"left\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[mobile-header-toggle-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[mobile-header-toggle-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:60:\"astra-settings[section-header-mobile-trigger-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-mobile-trigger-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[mobile-header-label-font-size]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-popup-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[mobile-header-type]\";a:4:{s:7:\"default\";s:8:\"dropdown\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[off-canvas-move-body]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[off-canvas-move-body-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:32:\"astra-settings[off-canvas-slide]\";a:4:{s:7:\"default\";s:5:\"right\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-builder-menu-toggle-target]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-offcanvas-content-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[off-canvas-background]\";a:4:{s:7:\"default\";a:10:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_background_obj\";}}s:38:\"astra-settings[off-canvas-close-color]\";a:4:{s:7:\"default\";s:7:\"#3a3a3a\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:40:\"astra-settings[off-canvas-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[off-canvas-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"section-primary-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:80;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hb-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:55:\"var( --ast-global-color-primary, --ast-global-color-4 )\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-header-main-sep-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:34:\"astra-settings[hb-header-main-sep]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[section-primary-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[section-primary-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[logo-title-settings-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:30:\"title_tagline-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[header-logo-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[title_tagline-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[title_tagline-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:36:\"astra-settings[font-size-site-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:26;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[font-size-site-tagline]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[title_tagline-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-hb-button-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-button1-text]\";a:4:{s:7:\"default\";s:6:\"Button\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-link-option]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:47:\"astra-settings[header-button1-text-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-button1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-text-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-text-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-back-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-back-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[header-button1-builder-button-border-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-border-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-button1-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-button1-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:40;s:5:\"right\";i:40;s:6:\"bottom\";i:40;s:4:\"left\";i:40;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:46:\"astra-settings[header-button1-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:42:\"astra-settings[header-button1-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:40:\"astra-settings[header-button1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[section-hb-button-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-hb-button-1-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-hb-button-1-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:15;s:5:\"right\";i:30;s:6:\"bottom\";i:15;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-hb-button-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-html-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-1]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-1color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-1-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-1link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-1link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-html-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-html-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-2]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-2color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-2-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-2link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-2link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-html-2-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-menu-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu1-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu1-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu1-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu1-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu1-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu1-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[header-menu1-submenu-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[header-menu1-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu1-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-1-font-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu1-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu1-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:38:\"astra-settings[header-menu1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-1-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu1-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-menu-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu2-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu2-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu2-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu2-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu2-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu2-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[header-menu2-submenu-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[header-menu2-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu2-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-2-font-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu2-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu2-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:38:\"astra-settings[header-menu2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-2-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu2-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:38:\"section-header-search-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-search-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[live-search]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[live-search-post-types]\";a:4:{s:7:\"default\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[live-search-result-count]\";a:4:{s:7:\"default\";i:5;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-search-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[section-header-search-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:59:\"astra-settings[section-header-search-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-account-tabs]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-account-login-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-login-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[header-account-login-style-extend-text-profile-type]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logged-in-text]\";a:4:{s:7:\"default\";s:10:\"My Account\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-account-login-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:0:\"\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:45:\"astra-settings[header-account-logout-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-account-logout-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[header-account-logout-style-extend-text-profile-type]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logout-preview]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-account-logged-out-text]\";a:4:{s:7:\"default\";s:6:\"Log In\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-logout-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:51:\"https://mrarif.me/secureswipesolutions/wp-login.php\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:42:\"astra-settings[header-account-image-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:2:\"40\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-account-icon-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-account-icon-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[header-account-text-design-options]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-account-type-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[header-account-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-account-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[font-size-section-header-account]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[section-header-account-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[section-hb-social-icons-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[font-size-section-hb-social-icons-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-hb-social-icons-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-social-1-color-type]\";a:4:{s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-social-1-brand-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-social-1-brand-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-social-1-brand-hover-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-social-1-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-social-1-label-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-social-1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-1-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-social-1-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-social-1-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-social-1-label-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-social-1-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-social-1-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-icons-1]\";a:4:{s:7:\"default\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_social_icons\";}}s:44:\"astra-settings[header-social-1-label-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-1-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-social-1-bg-space]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[header-social-1-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-social-1-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-hb-social-icons-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-social-icons-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"section-header-mobile-menu-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-mobile-menu-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[header-mobile-menu-divider-colors-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[header-mobile-menu-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[header-mobile-menu-link-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[header-mobile-menu-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-mobile-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-3)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[header-mobile-menu-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-mobile-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-1)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-mobile-menu-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:25:\"var(--ast-global-color-5)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-mobile-menu-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-1)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-mobile-menu-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:25:\"var(--ast-global-color-5)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-header-typo-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[header-mobile-menu-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-mobile-menu-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:46:\"astra-settings[header-mobile-menu-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:44:\"astra-settings[header-mobile-menu-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[font-extras-header-mobile-menu]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[header-mobile-menu-menu-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-mobile-menu-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:49:\"astra-settings[section-header-mobile-menu-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:64:\"astra-settings[section-header-mobile-menu-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-above-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-column]\";a:4:{s:7:\"default\";s:1:\"2\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[hba-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-height]\";a:4:{s:7:\"default\";i:60;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[hba-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[hba-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hba-footer-separator]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hba-footer-top-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hba-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-above-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-above-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-below-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-column]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"full\";s:6:\"tablet\";s:4:\"full\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[hbb-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-height]\";a:4:{s:7:\"default\";i:60;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[hbb-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[hbb-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hbb-footer-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hbb-footer-top-border-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hbb-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:26:\"var(--ast-global-color-4 )\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-below-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-below-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"section-footer-copyright-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-copyright-editor]\";a:4:{s:7:\"default\";s:77:\"Copyright [copyright] [current_year] [site_title] | Powered by [theme_author]\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-copyright-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[footer-copyright-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-3)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:55:\"astra-settings[section-footer-copyright-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[section-footer-copyright-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:50:\"astra-settings[font-size-section-footer-copyright]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:16;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[section-footer-copyright-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-footer-menu-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-menu-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:10:\"horizontal\";s:6:\"tablet\";s:8:\"vertical\";s:6:\"mobile\";s:8:\"vertical\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-menu-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-menu-link-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-menu-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-menu-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[footer-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-menu-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[footer-menu-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-menu-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-main-menu-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-main-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-footer-menu-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:37:\"astra-settings[footer-menu-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[section-footer-menu-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[section-fb-social-icons-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[font-size-section-fb-social-icons-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-fb-social-icons-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-social-1-color-type]\";a:4:{s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-social-1-brand-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-social-1-brand-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[footer-social-1-brand-hover-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-social-1-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-social-1-label-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[footer-social-1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-1-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-social-1-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-social-1-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-social-1-label-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-social-1-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-social-1-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-icons-1]\";a:4:{s:7:\"default\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_social_icons\";}}s:44:\"astra-settings[footer-social-1-label-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-1-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-social-1-bg-space]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[footer-social-1-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-social-1-radius-fields]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-fb-social-icons-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-social-icons-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-social-1-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"section-primary-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-footer-column]\";a:4:{s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"3-equal\";s:6:\"tablet\";s:7:\"3-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[hb-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-primary-footer-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hb-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:24:\"astra-settings[hb-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[hb-footer-main-sep]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-footer-main-sep-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:43:\"astra-settings[hb-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#f9f9f9\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[section-primary-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[section-primary-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-fb-html-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-fb-html-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-fb-html-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[footer-html-1]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-html-1color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-html-1-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-html-1link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-html-1link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-html-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-fb-html-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:39:\"astra-settings[footer-html-1-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-fb-html-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-fb-html-2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-fb-html-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[footer-html-2]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-html-2color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-html-2-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-html-2link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-html-2link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-html-2-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-fb-html-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:39:\"astra-settings[footer-html-2-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-1-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-1]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-1-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-1-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-1-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-1-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-1-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-1-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-2-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-2]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-2-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-2-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-2-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-2-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-2-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-2-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-3-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-3]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-3-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-3-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-3-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-3-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-3-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-3-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-3-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-3-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-4-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-4]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-4-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-4-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-4-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-4-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-4-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-4-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-4-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-4-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}}s:8:\"partials\";a:37:{s:41:\"astra-settings[header-mobile-popup-items]\";a:4:{s:8:\"selector\";s:25:\"#ast-mobile-popup-wrapper\";s:15:\"render_callback\";a:2:{i:0;O:20:\"Astra_Builder_Header\":0:{}i:1;s:12:\"mobile_popup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[different-retina-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:38:\"astra-settings[ast-header-retina-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[different-mobile-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:33:\"astra-settings[use-logo-svg-icon]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:49:\"Astra_Builder_UI_Controller::render_site_identity\";s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[logo-svg-icon]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:49:\"Astra_Builder_UI_Controller::render_site_identity\";s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:33:\"astra-settings[logo-title-inline]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[related-posts-title]\";a:4:{s:8:\"selector\";s:57:\".ast-related-posts-title-section .ast-related-posts-title\";s:15:\"render_callback\";a:2:{i:0;s:26:\"Astra_Related_Posts_Loader\";i:1;s:26:\"render_related_posts_title\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:39:\"astra-settings[transparent-header-logo]\";a:4:{s:8:\"selector\";s:64:\".ast-replace-site-logo-transparent .site-branding .site-logo-img\";s:15:\"render_callback\";s:0:\"\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[breadcrumb-position]\";a:4:{s:8:\"selector\";s:54:\".ast-breadcrumbs-wrapper .ast-breadcrumbs .trail-items\";s:15:\"render_callback\";s:0:\"\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:36:\"astra-settings[footer-desktop-items]\";a:4:{s:8:\"selector\";s:12:\".site-footer\";s:15:\"render_callback\";a:2:{i:0;O:20:\"Astra_Builder_Footer\":0:{}i:1;s:13:\"footer_markup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-trigger-icon]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:46:\"astra-settings[mobile-header-toggle-btn-style]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:40:\"astra-settings[mobile-header-menu-label]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-button1-text]\";a:4:{s:8:\"selector\";s:20:\".ast-header-button-1\";s:15:\"render_callback\";a:2:{i:0;r:9171;i:1;s:8:\"button_1\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:0;}s:42:\"astra-settings[header-button1-link-option]\";a:4:{s:8:\"selector\";s:20:\".ast-header-button-1\";s:15:\"render_callback\";a:2:{i:0;r:9171;i:1;s:8:\"button_1\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:29:\"astra-settings[header-html-1]\";a:4:{s:8:\"selector\";s:18:\".ast-header-html-1\";s:15:\"render_callback\";a:2:{i:0;r:9171;i:1;s:13:\"header_html_1\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[header-html-2]\";a:4:{s:8:\"selector\";s:18:\".ast-header-html-2\";s:15:\"render_callback\";a:2:{i:0;r:9171;i:1;s:13:\"header_html_2\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:42:\"astra-settings[header-account-login-style]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:67:\"astra-settings[header-account-login-style-extend-text-profile-type]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:45:\"astra-settings[header-account-logged-in-text]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:41:\"astra-settings[header-account-login-link]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:43:\"astra-settings[header-account-logout-style]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:68:\"astra-settings[header-account-logout-style-extend-text-profile-type]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:45:\"astra-settings[header-account-logout-preview]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:46:\"astra-settings[header-account-logged-out-text]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[header-social-icons-1]\";a:4:{s:8:\"selector\";s:25:\".ast-header-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9171;i:1;s:15:\"header_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:44:\"astra-settings[header-social-1-label-toggle]\";a:4:{s:8:\"selector\";s:25:\".ast-header-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9171;i:1;s:15:\"header_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:33:\"astra-settings[hba-footer-column]\";a:4:{s:8:\"selector\";s:23:\".site-above-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9225;i:1;s:12:\"above_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:33:\"astra-settings[hbb-footer-column]\";a:4:{s:8:\"selector\";s:23:\".site-below-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9225;i:1;s:12:\"below_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:39:\"astra-settings[footer-copyright-editor]\";a:4:{s:8:\"selector\";s:21:\".ast-footer-copyright\";s:15:\"render_callback\";a:2:{i:0;r:9225;i:1;s:16:\"footer_copyright\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:34:\"astra-settings[footer-menu-layout]\";a:4:{s:8:\"selector\";s:59:\".footer-widget-area[data-section=\"section-footer-menu\"] nav\";s:15:\"render_callback\";a:2:{i:0;r:9225;i:1;s:11:\"footer_menu\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[footer-social-icons-1]\";a:4:{s:8:\"selector\";s:25:\".ast-footer-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9225;i:1;s:15:\"footer_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:44:\"astra-settings[footer-social-1-label-toggle]\";a:4:{s:8:\"selector\";s:25:\".ast-footer-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9225;i:1;s:15:\"footer_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:32:\"astra-settings[hb-footer-column]\";a:4:{s:8:\"selector\";s:25:\".site-primary-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9225;i:1;s:14:\"primary_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:29:\"astra-settings[footer-html-1]\";a:4:{s:8:\"selector\";s:18:\".ast-footer-html-1\";s:15:\"render_callback\";a:2:{i:0;r:9225;i:1;s:13:\"footer_html_1\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[footer-html-2]\";a:4:{s:8:\"selector\";s:18:\".ast-footer-html-2\";s:15:\"render_callback\";a:2:{i:0;r:9225;i:1;s:13:\"footer_html_2\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}}}', 'off');

-- --------------------------------------------------------

--
-- Table structure for table `wps_postmeta`
--

CREATE TABLE `wps_postmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `post_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wps_postmeta`
--

INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default'),
(3, 6, '_elementor_edit_mode', 'builder'),
(4, 6, '_elementor_template_type', 'kit'),
(11, 10, '_edit_last', '1'),
(12, 10, '_edit_lock', '1764245782:1'),
(13, 10, '_wp_page_template', 'elementor_header_footer'),
(20, 10, 'ast-featured-img', 'disabled'),
(16, 10, 'site-sidebar-layout', 'no-sidebar'),
(17, 10, 'ast-site-content-layout', 'full-width-container'),
(18, 10, 'site-content-style', 'default'),
(19, 10, 'site-sidebar-style', 'default'),
(21, 10, 'astra-migrate-meta-layouts', 'set'),
(22, 10, 'ast-breadcrumbs-content', 'disabled'),
(23, 10, 'theme-transparent-header-meta', 'default'),
(24, 10, '_elementor_edit_mode', 'builder'),
(25, 10, '_astra_content_layout_flag', 'disabled'),
(26, 10, 'ast-title-bar-display', 'disabled'),
(27, 10, '_elementor_template_type', 'wp-page'),
(28, 10, '_elementor_version', '3.33.0'),
(29, 10, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(44, 10, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\",\"background_overlay_color\":\"#0A578E\",\"background_overlay_color_b\":\"#000B1B\",\"background_play_on_mobile\":\"yes\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero effort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4151, 29, '_elementor_data', '[{\"id\":\"433f982\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}]},\"elements\":[{\"id\":\"1d8f162\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"96eaf19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb60ea8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df33c90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0dd6823\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"138f1d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21987f6\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact page Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(153, 29, '_wp_page_template', 'elementor_header_footer'),
(32, 12, '_wp_page_template', 'elementor_header_footer'),
(33, 12, '_elementor_edit_mode', 'builder'),
(34, 12, '_elementor_template_type', 'wp-page'),
(35, 12, '_elementor_version', '3.33.0'),
(36, 12, '_elementor_pro_version', '3.25.4'),
(37, 12, '_elementor_page_settings', 'a:0:{}'),
(38, 13, '_wp_page_template', 'elementor_header_footer'),
(39, 13, '_elementor_edit_mode', 'builder'),
(40, 13, '_elementor_template_type', 'wp-page'),
(41, 13, '_elementor_version', '3.33.0'),
(42, 13, '_elementor_pro_version', '3.25.4'),
(43, 13, '_elementor_page_settings', 'a:0:{}'),
(114, 24, '_wp_page_template', 'elementor_header_footer'),
(115, 24, '_elementor_edit_mode', 'builder'),
(116, 24, '_elementor_template_type', 'wp-page'),
(117, 24, '_elementor_version', '3.33.0'),
(118, 24, '_elementor_pro_version', '3.25.4'),
(119, 24, '_elementor_data', '[]'),
(209, 36, '_wp_attached_file', '2025/11/banner-6.jpg'),
(210, 36, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:994;s:4:\"file\";s:20:\"2025/11/banner-6.jpg\";s:8:\"filesize\";i:164029;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"banner-6-300x149.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12397;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"banner-6-1024x509.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85633;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"banner-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7815;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"banner-6-768x382.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53841;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"banner-6-1536x763.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:763;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163672;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(211, 37, '_wp_attached_file', '2025/11/banner-5.jpg'),
(212, 37, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:851;s:4:\"file\";s:20:\"2025/11/banner-5.jpg\";s:8:\"filesize\";i:116708;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"banner-5-300x128.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9872;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"banner-5-1024x436.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:436;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58493;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"banner-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5320;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"banner-5-768x327.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:327;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38102;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"banner-5-1536x654.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108237;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(45, 14, '_wp_page_template', 'elementor_header_footer'),
(46, 14, '_elementor_edit_mode', 'builder'),
(47, 14, '_elementor_template_type', 'wp-page'),
(48, 14, '_elementor_version', '3.33.0'),
(49, 14, '_elementor_pro_version', '3.25.4'),
(50, 14, '_elementor_data', '[{\"id\":\"8e85fe7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d14bde5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7f4f97\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f6fa578\"}],\"pp_display_conditions\":[{\"_id\":\"aef6a37\"}]},\"elements\":[{\"id\":\"2b2f96e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c00515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28092c5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0591940\"}],\"pp_display_conditions\":[{\"_id\":\"97fd3b7\"}]},\"elements\":[{\"id\":\"86d7c5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"a6759da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f8b91f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"pp_display_conditions\":[{\"_id\":\"9f5bb2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b250a0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"6fa0aa6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ebb0e6f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0abf8ce\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fd02223\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2e768bb\"}],\"pp_display_conditions\":[{\"_id\":\"290879f\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(72, 17, '_elementor_edit_mode', 'builder'),
(73, 17, '_elementor_template_type', 'kit'),
(74, 17, '_wp_page_template', 'default'),
(75, 17, '_elementor_page_settings', 'a:13:{s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:22:\"Secure Swipe Solutions\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1240;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:21:\"default_page_template\";s:23:\"elementor_header_footer\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),
(76, 17, '_elementor_data', '[]'),
(77, 17, '_elementor_version', '3.33.0'),
(78, 17, '_elementor_pro_version', '3.25.4'),
(55, 6, '_edit_lock', '1763210315:1'),
(56, 15, '_elementor_edit_mode', 'builder'),
(57, 15, '_elementor_template_type', 'kit'),
(59, 6, '_wp_page_template', 'default'),
(60, 6, '_elementor_page_settings', 'a:20:{s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:22:\"Secure Swipe Solutions\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1240;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:21:\"default_page_template\";s:23:\"elementor_header_footer\";s:18:\"active_breakpoints\";a:5:{i:0;s:15:\"viewport_mobile\";i:1;s:21:\"viewport_mobile_extra\";i:2;s:15:\"viewport_tablet\";i:3;s:21:\"viewport_tablet_extra\";i:4;s:19:\"viewport_widescreen\";}s:15:\"viewport_mobile\";i:480;s:21:\"viewport_mobile_extra\";i:767;s:15:\"viewport_tablet\";i:991;s:21:\"viewport_tablet_extra\";i:1199;s:19:\"viewport_widescreen\";i:1200;s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:481;s:11:\"viewport_lg\";i:992;s:16:\"site_description\";s:7:\"Welcome\";}'),
(61, 6, '_elementor_data', '[]'),
(62, 16, '_elementor_edit_mode', 'builder'),
(63, 16, '_elementor_template_type', 'kit'),
(65, 16, '_wp_page_template', 'default'),
(66, 16, '_elementor_page_settings', 'a:11:{s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:22:\"Secure Swipe Solutions\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),
(67, 16, '_elementor_data', '[]'),
(69, 6, '_elementor_version', '3.33.0'),
(70, 6, '_elementor_pro_version', '3.25.4'),
(151, 29, '_edit_last', '1'),
(152, 29, '_edit_lock', '1763802140:1'),
(125, 25, '_edit_last', '1'),
(126, 25, '_edit_lock', '1764245277:1'),
(127, 25, '_wp_page_template', 'elementor_header_footer'),
(4227, 25, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Free-ATM.jpg\",\"id\":921,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value.jpg\",\"id\":925,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(134, 25, 'ast-featured-img', 'disabled'),
(130, 25, 'site-sidebar-layout', 'no-sidebar'),
(131, 25, 'ast-site-content-layout', 'full-width-container'),
(132, 25, 'site-content-style', 'default'),
(133, 25, 'site-sidebar-style', 'default'),
(135, 25, 'astra-migrate-meta-layouts', 'set'),
(136, 25, 'ast-breadcrumbs-content', 'disabled'),
(137, 25, 'theme-transparent-header-meta', 'default'),
(138, 27, '_edit_last', '1'),
(139, 27, '_edit_lock', '1764069337:1'),
(140, 27, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4194, 27, '_elementor_data', '[{\"id\":\"e7cdc50\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"93a2939\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eeb8e1f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2452a0b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2161e3d\"}]},\"elements\":[{\"id\":\"a6967d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b7c393\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bafde60\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79871db\"}],\"pp_display_conditions\":[{\"_id\":\"c249100\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3e6727b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-2.jpg\",\"id\":840,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"1efafb6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"081ab36\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"90dfaab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80a00a3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"144bbc0\"}],\"pp_display_conditions\":[{\"_id\":\"e2d192e\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca802c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0e0f082\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a048c2e\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c5a45d3\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d45c5c3\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Secure Swipe Solutions\",\"description_text\":\"provides reliable ATM placement services that help small and\\nmedium businesses save time, boost cashflow, and delivers an enhanced customer\\nexperience (without the headaches or hidden fees). \",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/privacy_18610789.svg\",\"id\":735},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(147, 27, 'ast-featured-img', 'disabled'),
(143, 27, 'site-sidebar-layout', 'no-sidebar'),
(144, 27, 'ast-site-content-layout', 'full-width-container'),
(145, 27, 'site-content-style', 'default'),
(146, 27, 'site-sidebar-style', 'default'),
(148, 27, 'astra-migrate-meta-layouts', 'set'),
(149, 27, 'ast-breadcrumbs-content', 'disabled'),
(150, 27, 'theme-transparent-header-meta', 'default'),
(84, 18, '_wp_trash_meta_status', 'publish'),
(85, 18, '_wp_trash_meta_time', '1763210519'),
(86, 19, '_edit_lock', '1763210566:1'),
(87, 19, '_wp_trash_meta_status', 'publish'),
(88, 19, '_wp_trash_meta_time', '1763210603'),
(89, 20, '_edit_lock', '1763210688:1'),
(90, 20, '_wp_trash_meta_status', 'publish'),
(91, 20, '_wp_trash_meta_time', '1763210745'),
(92, 21, '_wp_trash_meta_status', 'publish'),
(93, 21, '_wp_trash_meta_time', '1763210761'),
(94, 22, '_wp_page_template', 'elementor_header_footer'),
(95, 22, '_elementor_edit_mode', 'builder'),
(96, 22, '_elementor_template_type', 'wp-page'),
(97, 22, '_elementor_version', '3.33.0'),
(98, 22, '_elementor_pro_version', '3.25.4'),
(99, 22, '_elementor_data', '[{\"id\":\"8e85fe7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d14bde5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7f4f97\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f6fa578\"}],\"pp_display_conditions\":[{\"_id\":\"aef6a37\"}]},\"elements\":[{\"id\":\"2b2f96e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c00515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28092c5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0591940\"}],\"pp_display_conditions\":[{\"_id\":\"97fd3b7\"}]},\"elements\":[{\"id\":\"86d7c5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"a6759da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f8b91f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"pp_display_conditions\":[{\"_id\":\"9f5bb2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b250a0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"6fa0aa6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ebb0e6f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0abf8ce\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fd02223\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2e768bb\"}],\"pp_display_conditions\":[{\"_id\":\"290879f\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(100, 22, '_elementor_page_settings', 'a:0:{}'),
(227, 40, '_wp_page_template', 'elementor_header_footer'),
(228, 40, '_elementor_edit_mode', 'builder'),
(229, 40, '_elementor_template_type', 'wp-page'),
(230, 40, '_elementor_version', '3.33.0'),
(231, 40, '_elementor_pro_version', '3.25.4'),
(232, 40, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}]},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(104, 23, '_wp_page_template', 'elementor_header_footer'),
(105, 23, '_elementor_edit_mode', 'builder'),
(106, 23, '_elementor_template_type', 'wp-page'),
(107, 23, '_elementor_version', '3.33.0'),
(108, 23, '_elementor_pro_version', '3.25.4'),
(109, 23, '_elementor_data', '[{\"id\":\"8e85fe7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d14bde5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e7f4f97\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f6fa578\"}],\"pp_display_conditions\":[{\"_id\":\"aef6a37\"}]},\"elements\":[{\"id\":\"2b2f96e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c00515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"28092c5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0591940\"}],\"pp_display_conditions\":[{\"_id\":\"97fd3b7\"}]},\"elements\":[{\"id\":\"86d7c5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"a6759da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f8b91f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"pp_display_conditions\":[{\"_id\":\"9f5bb2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b250a0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"6fa0aa6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ebb0e6f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0abf8ce\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fd02223\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2e768bb\"}],\"pp_display_conditions\":[{\"_id\":\"290879f\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(110, 23, '_elementor_page_settings', 'a:0:{}'),
(213, 38, '_wp_page_template', 'elementor_header_footer'),
(214, 38, '_elementor_edit_mode', 'builder'),
(215, 38, '_elementor_template_type', 'wp-page'),
(216, 38, '_elementor_version', '3.33.0'),
(217, 38, '_elementor_pro_version', '3.25.4'),
(218, 38, '_elementor_data', '[]'),
(219, 38, '_elementor_page_settings', 'a:0:{}'),
(220, 39, '_wp_page_template', 'elementor_header_footer'),
(221, 39, '_elementor_edit_mode', 'builder'),
(222, 39, '_elementor_template_type', 'wp-page'),
(223, 39, '_elementor_version', '3.33.0'),
(224, 39, '_elementor_pro_version', '3.25.4'),
(225, 39, '_elementor_data', '[]'),
(226, 39, '_elementor_page_settings', 'a:0:{}'),
(160, 29, 'ast-featured-img', 'disabled'),
(156, 29, 'site-sidebar-layout', 'no-sidebar'),
(157, 29, 'ast-site-content-layout', 'full-width-container'),
(158, 29, 'site-content-style', 'default'),
(159, 29, 'site-sidebar-style', 'default'),
(161, 29, 'astra-migrate-meta-layouts', 'set'),
(162, 29, 'ast-breadcrumbs-content', 'disabled'),
(163, 29, 'theme-transparent-header-meta', 'default'),
(164, 31, '_menu_item_type', 'post_type'),
(165, 31, '_menu_item_menu_item_parent', '0'),
(166, 31, '_menu_item_object_id', '10'),
(167, 31, '_menu_item_object', 'page'),
(168, 31, '_menu_item_target', ''),
(169, 31, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(170, 31, '_menu_item_xfn', ''),
(171, 31, '_menu_item_url', ''),
(173, 32, '_menu_item_type', 'post_type'),
(174, 32, '_menu_item_menu_item_parent', '0'),
(175, 32, '_menu_item_object_id', '29'),
(176, 32, '_menu_item_object', 'page'),
(177, 32, '_menu_item_target', ''),
(178, 32, '_menu_item_classes', 'a:1:{i:0;s:12:\"contact_item\";}'),
(179, 32, '_menu_item_xfn', ''),
(180, 32, '_menu_item_url', ''),
(242, 41, '_elementor_version', '3.33.0'),
(182, 33, '_menu_item_type', 'post_type'),
(183, 33, '_menu_item_menu_item_parent', '0'),
(184, 33, '_menu_item_object_id', '2'),
(185, 33, '_menu_item_object', 'page'),
(186, 33, '_menu_item_target', ''),
(187, 33, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(188, 33, '_menu_item_xfn', ''),
(189, 33, '_menu_item_url', ''),
(190, 33, '_menu_item_orphaned', '1763213195'),
(191, 34, '_menu_item_type', 'post_type'),
(192, 34, '_menu_item_menu_item_parent', '0'),
(193, 34, '_menu_item_object_id', '25'),
(194, 34, '_menu_item_object', 'page'),
(195, 34, '_menu_item_target', ''),
(196, 34, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(197, 34, '_menu_item_xfn', ''),
(198, 34, '_menu_item_url', ''),
(244, 41, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}]},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(200, 35, '_menu_item_type', 'post_type'),
(201, 35, '_menu_item_menu_item_parent', '0'),
(202, 35, '_menu_item_object_id', '27'),
(203, 35, '_menu_item_object', 'page'),
(204, 35, '_menu_item_target', ''),
(205, 35, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(206, 35, '_menu_item_xfn', ''),
(207, 35, '_menu_item_url', ''),
(243, 41, '_elementor_pro_version', '3.25.4'),
(239, 41, '_wp_page_template', 'elementor_header_footer'),
(240, 41, '_elementor_edit_mode', 'builder'),
(241, 41, '_elementor_template_type', 'wp-page'),
(462, 60, '_wp_page_template', 'elementor_header_footer'),
(246, 41, '_elementor_page_settings', 'a:0:{}'),
(249, 42, '_wp_page_template', 'elementor_header_footer'),
(250, 42, '_elementor_edit_mode', 'builder'),
(251, 42, '_elementor_template_type', 'wp-page'),
(252, 42, '_elementor_version', '3.33.0'),
(253, 42, '_elementor_pro_version', '3.25.4'),
(254, 42, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}]},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(256, 42, '_elementor_page_settings', 'a:0:{}'),
(259, 43, '_wp_page_template', 'elementor_header_footer'),
(260, 43, '_elementor_edit_mode', 'builder'),
(261, 43, '_elementor_template_type', 'wp-page'),
(262, 43, '_elementor_version', '3.33.0'),
(263, 43, '_elementor_pro_version', '3.25.4'),
(264, 43, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(442, 58, '_wp_page_template', 'elementor_header_footer'),
(443, 58, '_elementor_edit_mode', 'builder'),
(444, 58, '_elementor_template_type', 'wp-page'),
(445, 58, '_elementor_version', '3.33.0'),
(446, 58, '_elementor_pro_version', '3.25.4'),
(447, 58, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(489, 63, '_wp_page_template', 'elementor_header_footer'),
(473, 61, '_wp_page_template', 'elementor_header_footer'),
(474, 61, '_elementor_edit_mode', 'builder'),
(475, 61, '_elementor_template_type', 'wp-page'),
(476, 61, '_elementor_version', '3.33.0'),
(477, 61, '_elementor_pro_version', '3.25.4'),
(478, 61, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(272, 44, '_elementor_edit_mode', 'builder'),
(273, 44, '_elementor_template_type', 'header'),
(274, 45, '_elementor_edit_mode', 'builder'),
(275, 45, '_elementor_template_type', 'header'),
(276, 44, '_elementor_version', '3.33.0'),
(277, 44, '_elementor_pro_version', '3.25.4'),
(278, 44, '_astra_content_layout_flag', 'disabled'),
(280, 44, 'ast-title-bar-display', 'disabled'),
(281, 44, 'ast-featured-img', 'disabled'),
(282, 44, 'ast-site-content-layout', 'full-width-container'),
(283, 44, 'site-sidebar-layout', 'no-sidebar'),
(287, 44, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\",\"icon_color_hover\":\"\"},\"link_click\":\"inline\",\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\",\"icon_color_hover\":\"\"},\"link_click\":\"inline\",\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fa08d1f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"\"},\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#4E4F5221\"},\"elements\":[{\"id\":\"a0a2324\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":21},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"1946668\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/logo-3.png\",\"id\":599,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":171,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"33c4891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"a4f3f51\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"2ce2a97\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2c9345c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf57bb8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"449fc1a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c2eeee7\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"55afdba\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"5ba0a7c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7cfe67\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"25ff9b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"78d11dd\"}],\"pp_display_conditions\":[{\"_id\":\"9c1b3d8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"195ce54\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ccb607c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(285, 44, '_edit_lock', '1764245459:1'),
(286, 44, '_wp_page_template', 'default'),
(288, 46, '_elementor_edit_mode', 'builder'),
(289, 46, '_elementor_template_type', 'header'),
(290, 46, '_elementor_version', '3.33.0'),
(291, 46, '_elementor_pro_version', '3.25.4'),
(292, 46, '_wp_page_template', 'default'),
(293, 46, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(297, 44, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(316, 49, '_elementor_edit_mode', 'builder'),
(317, 49, '_elementor_template_type', 'header'),
(318, 49, '_elementor_version', '3.33.0'),
(319, 49, '_elementor_pro_version', '3.25.4'),
(320, 49, '_wp_page_template', 'default');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(321, 49, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}]},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(308, 48, '_wp_attached_file', '2025/11/Design-Full-Logo.avif'),
(309, 48, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:78;s:6:\"height\";i:62;s:4:\"file\";s:29:\"2025/11/Design-Full-Logo.avif\";s:8:\"filesize\";i:1123;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(330, 50, '_elementor_edit_mode', 'builder'),
(331, 50, '_elementor_template_type', 'header'),
(332, 50, '_elementor_version', '3.33.0'),
(333, 50, '_elementor_pro_version', '3.25.4'),
(334, 50, '_wp_page_template', 'default'),
(335, 50, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}]},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true}],\"isInner\":false}]'),
(323, 49, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(344, 51, '_elementor_edit_mode', 'builder'),
(345, 51, '_elementor_template_type', 'header'),
(346, 51, '_elementor_version', '3.33.0'),
(347, 51, '_elementor_pro_version', '3.25.4'),
(348, 51, '_wp_page_template', 'default'),
(349, 51, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}]},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"150758c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(337, 50, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(358, 52, '_elementor_edit_mode', 'builder'),
(359, 52, '_elementor_template_type', 'header'),
(360, 52, '_elementor_version', '3.33.0'),
(361, 52, '_elementor_pro_version', '3.25.4'),
(362, 52, '_wp_page_template', 'default'),
(363, 52, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}]},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"150758c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(351, 51, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(372, 53, '_elementor_edit_mode', 'builder'),
(373, 53, '_elementor_template_type', 'header'),
(374, 53, '_elementor_version', '3.33.0'),
(375, 53, '_elementor_pro_version', '3.25.4'),
(376, 53, '_wp_page_template', 'default'),
(377, 53, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}]},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"150758c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(365, 52, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(386, 54, '_elementor_edit_mode', 'builder'),
(387, 54, '_elementor_template_type', 'header'),
(388, 54, '_elementor_version', '3.33.0'),
(389, 54, '_elementor_pro_version', '3.25.4'),
(390, 54, '_wp_page_template', 'default'),
(391, 54, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}]},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"150758c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(379, 53, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(400, 55, '_elementor_edit_mode', 'builder'),
(401, 55, '_elementor_template_type', 'header'),
(402, 55, '_elementor_version', '3.33.0'),
(403, 55, '_elementor_pro_version', '3.25.4'),
(404, 55, '_wp_page_template', 'default'),
(405, 55, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"10\",\"bottom\":\"9\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}]},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"150758c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(393, 54, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(414, 56, '_elementor_edit_mode', 'builder'),
(415, 56, '_elementor_template_type', 'header'),
(416, 56, '_elementor_version', '3.33.0'),
(417, 56, '_elementor_pro_version', '3.25.4'),
(418, 56, '_wp_page_template', 'default');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(419, 56, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"10\",\"bottom\":\"9\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}]},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"150758c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(407, 55, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(428, 57, '_elementor_edit_mode', 'builder'),
(429, 57, '_elementor_template_type', 'header'),
(430, 57, '_elementor_version', '3.33.0'),
(431, 57, '_elementor_pro_version', '3.25.4'),
(432, 57, '_wp_page_template', 'default'),
(433, 57, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"10\",\"bottom\":\"9\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}]},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"150758c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(421, 56, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(961, 109, '_elementor_edit_mode', 'builder'),
(962, 109, '_elementor_template_type', 'header'),
(963, 109, '_elementor_version', '3.33.0'),
(964, 109, '_elementor_pro_version', '3.25.4'),
(965, 109, '_wp_page_template', 'default'),
(966, 109, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"10\",\"bottom\":\"9\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}]},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"150758c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(435, 57, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1074, 119, '_elementor_edit_mode', 'builder'),
(1075, 119, '_elementor_template_type', 'header'),
(1076, 119, '_elementor_version', '3.33.0'),
(1077, 119, '_elementor_pro_version', '3.25.4'),
(1078, 119, '_wp_page_template', 'default'),
(1079, 119, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"10\",\"bottom\":\"9\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"150758c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(449, 58, '_elementor_page_settings', 'a:0:{}'),
(452, 59, '_wp_page_template', 'elementor_header_footer'),
(453, 59, '_elementor_edit_mode', 'builder'),
(454, 59, '_elementor_template_type', 'wp-page'),
(455, 59, '_elementor_version', '3.33.0'),
(456, 59, '_elementor_pro_version', '3.25.4'),
(457, 59, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(459, 59, '_elementor_page_settings', 'a:0:{}'),
(463, 60, '_elementor_edit_mode', 'builder'),
(464, 60, '_elementor_template_type', 'wp-page'),
(465, 60, '_elementor_version', '3.33.0'),
(466, 60, '_elementor_pro_version', '3.25.4'),
(467, 60, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(480, 61, '_elementor_page_settings', 'a:0:{}'),
(481, 62, '_wp_page_template', 'elementor_header_footer'),
(482, 62, '_elementor_edit_mode', 'builder'),
(483, 62, '_elementor_template_type', 'wp-page'),
(484, 62, '_elementor_version', '3.33.0'),
(485, 62, '_elementor_pro_version', '3.25.4'),
(486, 62, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(488, 62, '_elementor_page_settings', 'a:0:{}'),
(490, 63, '_elementor_edit_mode', 'builder'),
(491, 63, '_elementor_template_type', 'wp-page'),
(492, 63, '_elementor_version', '3.33.0'),
(493, 63, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(494, 63, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(523, 67, '_wp_page_template', 'elementor_header_footer'),
(503, 65, '_wp_page_template', 'elementor_header_footer'),
(504, 65, '_elementor_edit_mode', 'builder'),
(505, 65, '_elementor_template_type', 'wp-page'),
(506, 65, '_elementor_version', '3.33.0'),
(507, 65, '_elementor_pro_version', '3.25.4'),
(508, 65, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(567, 71, '_wp_page_template', 'elementor_header_footer'),
(568, 71, '_elementor_edit_mode', 'builder'),
(569, 71, '_elementor_template_type', 'wp-page'),
(536, 68, '_wp_page_template', 'elementor_header_footer'),
(537, 68, '_elementor_edit_mode', 'builder'),
(538, 68, '_elementor_template_type', 'wp-page'),
(539, 68, '_elementor_version', '3.33.0'),
(540, 68, '_elementor_pro_version', '3.25.4'),
(541, 68, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(500, 64, '_wp_attached_file', '2025/11/cropped-Design-Full-Logo.avif'),
(501, 64, '_wp_attachment_context', 'site-icon'),
(502, 64, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:37:\"2025/11/cropped-Design-Full-Logo.avif\";s:8:\"filesize\";i:4239;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"cropped-Design-Full-Logo-300x300.avif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/avif\";s:8:\"filesize\";i:2927;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"cropped-Design-Full-Logo-150x150.avif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/avif\";s:8:\"filesize\";i:1818;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:37:\"cropped-Design-Full-Logo-270x270.avif\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/avif\";s:8:\"filesize\";i:2801;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:37:\"cropped-Design-Full-Logo-192x192.avif\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/avif\";s:8:\"filesize\";i:2187;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:37:\"cropped-Design-Full-Logo-180x180.avif\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/avif\";s:8:\"filesize\";i:1947;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:35:\"cropped-Design-Full-Logo-32x32.avif\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/avif\";s:8:\"filesize\";i:701;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(510, 65, '_elementor_page_settings', 'a:0:{}'),
(513, 66, '_wp_page_template', 'elementor_header_footer'),
(514, 66, '_elementor_edit_mode', 'builder'),
(515, 66, '_elementor_template_type', 'wp-page'),
(516, 66, '_elementor_version', '3.33.0'),
(517, 66, '_elementor_pro_version', '3.25.4'),
(518, 66, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(520, 66, '_elementor_page_settings', 'a:0:{}'),
(524, 67, '_elementor_edit_mode', 'builder'),
(525, 67, '_elementor_template_type', 'wp-page'),
(526, 67, '_elementor_version', '3.33.0'),
(527, 67, '_elementor_pro_version', '3.25.4'),
(528, 67, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(648, 79, '_elementor_edit_mode', 'builder'),
(583, 73, '_wp_page_template', 'elementor_header_footer'),
(570, 71, '_elementor_version', '3.33.0'),
(571, 71, '_elementor_pro_version', '3.25.4'),
(572, 71, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":62,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(543, 68, '_elementor_page_settings', 'a:0:{}'),
(546, 69, '_wp_page_template', 'elementor_header_footer'),
(547, 69, '_elementor_edit_mode', 'builder'),
(548, 69, '_elementor_template_type', 'wp-page'),
(549, 69, '_elementor_version', '3.33.0'),
(550, 69, '_elementor_pro_version', '3.25.4'),
(551, 69, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(553, 69, '_elementor_page_settings', 'a:0:{}'),
(680, 82, '_wp_page_template', 'elementor_header_footer'),
(649, 79, '_elementor_template_type', 'wp-page'),
(650, 79, '_elementor_version', '3.33.0'),
(556, 70, '_wp_page_template', 'elementor_header_footer'),
(557, 70, '_elementor_edit_mode', 'builder'),
(558, 70, '_elementor_template_type', 'wp-page'),
(559, 70, '_elementor_version', '3.33.0'),
(560, 70, '_elementor_pro_version', '3.25.4'),
(561, 70, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":62,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(574, 71, '_elementor_page_settings', 'a:0:{}'),
(575, 72, '_wp_page_template', 'elementor_header_footer'),
(576, 72, '_elementor_edit_mode', 'builder'),
(577, 72, '_elementor_template_type', 'wp-page'),
(578, 72, '_elementor_version', '3.33.0'),
(579, 72, '_elementor_pro_version', '3.25.4'),
(580, 72, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":62,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(582, 72, '_elementor_page_settings', 'a:0:{}'),
(584, 73, '_elementor_edit_mode', 'builder'),
(585, 73, '_elementor_template_type', 'wp-page'),
(586, 73, '_elementor_version', '3.33.0'),
(587, 73, '_elementor_pro_version', '3.25.4'),
(588, 73, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":62,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(594, 74, '_wp_page_template', 'elementor_header_footer'),
(595, 74, '_elementor_edit_mode', 'builder'),
(596, 74, '_elementor_template_type', 'wp-page'),
(597, 74, '_elementor_version', '3.33.0'),
(598, 74, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(599, 74, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":62,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(794, 93, '_wp_page_template', 'elementor_header_footer'),
(928, 106, '_wp_page_template', 'elementor_header_footer'),
(1008, 113, '_wp_page_template', 'elementor_header_footer'),
(1205, 130, '_elementor_pro_version', '3.25.4'),
(651, 79, '_elementor_pro_version', '3.25.4'),
(627, 77, '_wp_page_template', 'elementor_header_footer'),
(628, 77, '_elementor_edit_mode', 'builder'),
(629, 77, '_elementor_template_type', 'wp-page'),
(630, 77, '_elementor_version', '3.33.0'),
(631, 77, '_elementor_pro_version', '3.25.4'),
(632, 77, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":62,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(695, 84, '_wp_page_template', 'elementor_header_footer'),
(696, 84, '_elementor_edit_mode', 'builder'),
(697, 84, '_elementor_template_type', 'wp-page'),
(698, 84, '_elementor_version', '3.33.0'),
(699, 84, '_elementor_pro_version', '3.25.4'),
(700, 84, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1206, 130, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(601, 74, '_elementor_page_settings', 'a:0:{}'),
(604, 75, '_wp_page_template', 'elementor_header_footer'),
(605, 75, '_elementor_edit_mode', 'builder'),
(606, 75, '_elementor_template_type', 'wp-page'),
(607, 75, '_elementor_version', '3.33.0'),
(608, 75, '_elementor_pro_version', '3.25.4'),
(609, 75, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":62,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(611, 75, '_elementor_page_settings', 'a:0:{}'),
(647, 79, '_wp_page_template', 'elementor_header_footer'),
(614, 76, '_wp_page_template', 'elementor_header_footer'),
(615, 76, '_elementor_edit_mode', 'builder'),
(616, 76, '_elementor_template_type', 'wp-page'),
(617, 76, '_elementor_version', '3.33.0'),
(618, 76, '_elementor_pro_version', '3.25.4'),
(619, 76, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":62,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(681, 82, '_elementor_edit_mode', 'builder'),
(660, 80, '_wp_page_template', 'elementor_header_footer'),
(661, 80, '_elementor_edit_mode', 'builder'),
(662, 80, '_elementor_template_type', 'wp-page'),
(663, 80, '_elementor_version', '3.33.0'),
(664, 80, '_elementor_pro_version', '3.25.4'),
(665, 80, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(634, 77, '_elementor_page_settings', 'a:0:{}'),
(637, 78, '_wp_page_template', 'elementor_header_footer'),
(638, 78, '_elementor_edit_mode', 'builder'),
(639, 78, '_elementor_template_type', 'wp-page'),
(640, 78, '_elementor_version', '3.33.0'),
(641, 78, '_elementor_pro_version', '3.25.4'),
(642, 78, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":62,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bce69bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1765298\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(644, 78, '_elementor_page_settings', 'a:0:{}'),
(652, 79, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(715, 86, '_wp_page_template', 'elementor_header_footer'),
(667, 80, '_elementor_page_settings', 'a:0:{}'),
(670, 81, '_wp_page_template', 'elementor_header_footer'),
(671, 81, '_elementor_edit_mode', 'builder'),
(672, 81, '_elementor_template_type', 'wp-page'),
(673, 81, '_elementor_version', '3.33.0'),
(674, 81, '_elementor_pro_version', '3.25.4'),
(675, 81, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(677, 81, '_elementor_page_settings', 'a:0:{}'),
(682, 82, '_elementor_template_type', 'wp-page'),
(683, 82, '_elementor_version', '3.33.0'),
(684, 82, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(685, 82, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(748, 89, '_wp_page_template', 'elementor_header_footer'),
(728, 87, '_wp_page_template', 'elementor_header_footer'),
(729, 87, '_elementor_edit_mode', 'builder'),
(730, 87, '_elementor_template_type', 'wp-page'),
(731, 87, '_elementor_version', '3.33.0'),
(732, 87, '_elementor_pro_version', '3.25.4'),
(733, 87, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/28717047-1.jpg\",\"id\":83,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(693, 83, '_wp_attached_file', '2025/11/28717047-1.jpg'),
(694, 83, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:22:\"2025/11/28717047-1.jpg\";s:8:\"filesize\";i:123567;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"28717047-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11296;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"28717047-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70102;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"28717047-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5758;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"28717047-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44352;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"28717047-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134665;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(702, 84, '_elementor_page_settings', 'a:0:{}'),
(705, 85, '_wp_page_template', 'elementor_header_footer'),
(706, 85, '_elementor_edit_mode', 'builder'),
(707, 85, '_elementor_template_type', 'wp-page'),
(708, 85, '_elementor_version', '3.33.0'),
(709, 85, '_elementor_pro_version', '3.25.4'),
(710, 85, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(712, 85, '_elementor_page_settings', 'a:0:{}'),
(716, 86, '_elementor_edit_mode', 'builder'),
(717, 86, '_elementor_template_type', 'wp-page'),
(718, 86, '_elementor_version', '3.33.0'),
(719, 86, '_elementor_pro_version', '3.25.4'),
(720, 86, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/28717047-1.jpg\",\"id\":83,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(761, 90, '_wp_page_template', 'elementor_header_footer'),
(762, 90, '_elementor_edit_mode', 'builder'),
(763, 90, '_elementor_template_type', 'wp-page'),
(764, 90, '_elementor_version', '3.33.0'),
(765, 90, '_elementor_pro_version', '3.25.4'),
(766, 90, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(735, 87, '_elementor_page_settings', 'a:0:{}'),
(738, 88, '_wp_page_template', 'elementor_header_footer'),
(739, 88, '_elementor_edit_mode', 'builder'),
(740, 88, '_elementor_template_type', 'wp-page'),
(741, 88, '_elementor_version', '3.33.0'),
(742, 88, '_elementor_pro_version', '3.25.4'),
(743, 88, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/28717047-1.jpg\",\"id\":83,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(745, 88, '_elementor_page_settings', 'a:0:{}'),
(749, 89, '_elementor_edit_mode', 'builder'),
(750, 89, '_elementor_template_type', 'wp-page'),
(751, 89, '_elementor_version', '3.33.0'),
(752, 89, '_elementor_pro_version', '3.25.4'),
(753, 89, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(814, 95, '_wp_page_template', 'elementor_header_footer'),
(795, 93, '_elementor_edit_mode', 'builder'),
(796, 93, '_elementor_template_type', 'wp-page'),
(797, 93, '_elementor_version', '3.33.0'),
(798, 93, '_elementor_pro_version', '3.25.4'),
(799, 93, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(768, 90, '_elementor_page_settings', 'a:0:{}'),
(771, 91, '_wp_page_template', 'elementor_header_footer'),
(772, 91, '_elementor_edit_mode', 'builder'),
(773, 91, '_elementor_template_type', 'wp-page'),
(774, 91, '_elementor_version', '3.33.0'),
(775, 91, '_elementor_pro_version', '3.25.4'),
(776, 91, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}]},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(778, 91, '_elementor_page_settings', 'a:0:{}'),
(781, 92, '_wp_page_template', 'elementor_header_footer'),
(782, 92, '_elementor_edit_mode', 'builder'),
(783, 92, '_elementor_template_type', 'wp-page'),
(784, 92, '_elementor_version', '3.33.0'),
(785, 92, '_elementor_pro_version', '3.25.4'),
(786, 92, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(847, 98, '_wp_page_template', 'elementor_header_footer'),
(827, 96, '_wp_page_template', 'elementor_header_footer'),
(828, 96, '_elementor_edit_mode', 'builder'),
(829, 96, '_elementor_template_type', 'wp-page'),
(830, 96, '_elementor_version', '3.33.0'),
(831, 96, '_elementor_pro_version', '3.25.4'),
(832, 96, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(801, 93, '_elementor_page_settings', 'a:0:{}'),
(804, 94, '_wp_page_template', 'elementor_header_footer'),
(805, 94, '_elementor_edit_mode', 'builder'),
(806, 94, '_elementor_template_type', 'wp-page'),
(807, 94, '_elementor_version', '3.33.0'),
(808, 94, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(809, 94, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(811, 94, '_elementor_page_settings', 'a:0:{}'),
(815, 95, '_elementor_edit_mode', 'builder'),
(816, 95, '_elementor_template_type', 'wp-page'),
(817, 95, '_elementor_version', '3.33.0'),
(818, 95, '_elementor_pro_version', '3.25.4'),
(819, 95, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(882, 102, '_wp_page_template', 'elementor_header_footer'),
(862, 100, '_wp_page_template', 'elementor_header_footer'),
(863, 100, '_elementor_edit_mode', 'builder'),
(864, 100, '_elementor_template_type', 'wp-page'),
(865, 100, '_elementor_version', '3.33.0'),
(866, 100, '_elementor_pro_version', '3.25.4'),
(867, 100, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(834, 96, '_elementor_page_settings', 'a:0:{}'),
(837, 97, '_wp_page_template', 'elementor_header_footer'),
(838, 97, '_elementor_edit_mode', 'builder'),
(839, 97, '_elementor_template_type', 'wp-page'),
(840, 97, '_elementor_version', '3.33.0'),
(841, 97, '_elementor_pro_version', '3.25.4'),
(842, 97, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(844, 97, '_elementor_page_settings', 'a:0:{}'),
(848, 98, '_elementor_edit_mode', 'builder'),
(849, 98, '_elementor_template_type', 'wp-page'),
(850, 98, '_elementor_version', '3.33.0'),
(851, 98, '_elementor_pro_version', '3.25.4'),
(852, 98, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(915, 105, '_wp_page_template', 'elementor_header_footer'),
(895, 103, '_wp_page_template', 'elementor_header_footer'),
(896, 103, '_elementor_edit_mode', 'builder'),
(897, 103, '_elementor_template_type', 'wp-page'),
(898, 103, '_elementor_version', '3.33.0'),
(899, 103, '_elementor_pro_version', '3.25.4'),
(900, 103, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(860, 99, '_wp_attached_file', '2025/11/3222-1.jpg'),
(861, 99, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:881;s:4:\"file\";s:18:\"2025/11/3222-1.jpg\";s:8:\"filesize\";i:63816;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"3222-1-300x132.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5636;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"3222-1-1024x451.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34185;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"3222-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3322;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"3222-1-768x338.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22085;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"3222-1-1536x677.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:677;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63591;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(869, 100, '_elementor_page_settings', 'a:0:{}'),
(872, 101, '_wp_page_template', 'elementor_header_footer'),
(873, 101, '_elementor_edit_mode', 'builder'),
(874, 101, '_elementor_template_type', 'wp-page'),
(875, 101, '_elementor_version', '3.33.0'),
(876, 101, '_elementor_pro_version', '3.25.4'),
(877, 101, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(879, 101, '_elementor_page_settings', 'a:0:{}'),
(883, 102, '_elementor_edit_mode', 'builder'),
(884, 102, '_elementor_template_type', 'wp-page'),
(885, 102, '_elementor_version', '3.33.0'),
(886, 102, '_elementor_pro_version', '3.25.4'),
(887, 102, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(948, 108, '_wp_page_template', 'elementor_header_footer'),
(929, 106, '_elementor_edit_mode', 'builder'),
(930, 106, '_elementor_template_type', 'wp-page'),
(931, 106, '_elementor_version', '3.33.0'),
(932, 106, '_elementor_pro_version', '3.25.4'),
(933, 106, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(902, 103, '_elementor_page_settings', 'a:0:{}'),
(905, 104, '_wp_page_template', 'elementor_header_footer'),
(906, 104, '_elementor_edit_mode', 'builder'),
(907, 104, '_elementor_template_type', 'wp-page'),
(908, 104, '_elementor_version', '3.33.0'),
(909, 104, '_elementor_pro_version', '3.25.4'),
(910, 104, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(912, 104, '_elementor_page_settings', 'a:0:{}'),
(916, 105, '_elementor_edit_mode', 'builder'),
(917, 105, '_elementor_template_type', 'wp-page'),
(918, 105, '_elementor_version', '3.33.0'),
(919, 105, '_elementor_pro_version', '3.25.4'),
(920, 105, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(975, 110, '_wp_page_template', 'elementor_header_footer'),
(976, 110, '_elementor_edit_mode', 'builder'),
(977, 110, '_elementor_template_type', 'wp-page'),
(978, 110, '_elementor_version', '3.33.0'),
(979, 110, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(980, 110, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(935, 106, '_elementor_page_settings', 'a:0:{}'),
(938, 107, '_wp_page_template', 'elementor_header_footer'),
(939, 107, '_elementor_edit_mode', 'builder'),
(940, 107, '_elementor_template_type', 'wp-page'),
(941, 107, '_elementor_version', '3.33.0'),
(942, 107, '_elementor_pro_version', '3.25.4'),
(943, 107, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(945, 107, '_elementor_page_settings', 'a:0:{}'),
(949, 108, '_elementor_edit_mode', 'builder'),
(950, 108, '_elementor_template_type', 'wp-page'),
(951, 108, '_elementor_version', '3.33.0'),
(952, 108, '_elementor_pro_version', '3.25.4'),
(953, 108, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1028, 115, '_wp_page_template', 'elementor_header_footer'),
(1009, 113, '_elementor_edit_mode', 'builder'),
(1010, 113, '_elementor_template_type', 'wp-page'),
(1011, 113, '_elementor_version', '3.33.0'),
(1012, 113, '_elementor_pro_version', '3.25.4'),
(1013, 113, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(968, 109, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1088, 120, '_elementor_edit_mode', 'builder'),
(1089, 120, '_elementor_template_type', 'header'),
(1090, 120, '_elementor_version', '3.33.0'),
(1091, 120, '_elementor_pro_version', '3.25.4'),
(1092, 120, '_wp_page_template', 'default'),
(1093, 120, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"10\",\"bottom\":\"9\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"150758c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(982, 110, '_elementor_page_settings', 'a:0:{}'),
(985, 111, '_wp_page_template', 'elementor_header_footer'),
(986, 111, '_elementor_edit_mode', 'builder'),
(987, 111, '_elementor_template_type', 'wp-page'),
(988, 111, '_elementor_version', '3.33.0'),
(989, 111, '_elementor_pro_version', '3.25.4'),
(990, 111, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(992, 111, '_elementor_page_settings', 'a:0:{}'),
(995, 112, '_wp_page_template', 'elementor_header_footer'),
(996, 112, '_elementor_edit_mode', 'builder'),
(997, 112, '_elementor_template_type', 'wp-page'),
(998, 112, '_elementor_version', '3.33.0'),
(999, 112, '_elementor_pro_version', '3.25.4'),
(1000, 112, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1061, 118, '_wp_page_template', 'elementor_header_footer'),
(1041, 116, '_wp_page_template', 'elementor_header_footer'),
(1042, 116, '_elementor_edit_mode', 'builder'),
(1043, 116, '_elementor_template_type', 'wp-page'),
(1044, 116, '_elementor_version', '3.33.0'),
(1045, 116, '_elementor_pro_version', '3.25.4'),
(1046, 116, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1135, 124, '_wp_page_template', 'elementor_header_footer'),
(1015, 113, '_elementor_page_settings', 'a:0:{}'),
(1018, 114, '_wp_page_template', 'elementor_header_footer'),
(1019, 114, '_elementor_edit_mode', 'builder'),
(1020, 114, '_elementor_template_type', 'wp-page'),
(1021, 114, '_elementor_version', '3.33.0'),
(1022, 114, '_elementor_pro_version', '3.25.4'),
(1023, 114, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1025, 114, '_elementor_page_settings', 'a:0:{}'),
(1029, 115, '_elementor_edit_mode', 'builder'),
(1030, 115, '_elementor_template_type', 'wp-page'),
(1031, 115, '_elementor_version', '3.33.0'),
(1032, 115, '_elementor_pro_version', '3.25.4'),
(1033, 115, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1102, 121, '_wp_page_template', 'elementor_header_footer'),
(1103, 121, '_elementor_edit_mode', 'builder'),
(1104, 121, '_elementor_template_type', 'wp-page'),
(1105, 121, '_elementor_version', '3.33.0'),
(1106, 121, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1107, 121, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1048, 116, '_elementor_page_settings', 'a:0:{}'),
(1051, 117, '_wp_page_template', 'elementor_header_footer'),
(1052, 117, '_elementor_edit_mode', 'builder'),
(1053, 117, '_elementor_template_type', 'wp-page'),
(1054, 117, '_elementor_version', '3.33.0'),
(1055, 117, '_elementor_pro_version', '3.25.4'),
(1056, 117, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1058, 117, '_elementor_page_settings', 'a:0:{}'),
(1062, 118, '_elementor_edit_mode', 'builder'),
(1063, 118, '_elementor_template_type', 'wp-page'),
(1064, 118, '_elementor_version', '3.33.0'),
(1065, 118, '_elementor_pro_version', '3.25.4'),
(1066, 118, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1136, 124, '_elementor_edit_mode', 'builder'),
(1137, 124, '_elementor_template_type', 'wp-page'),
(1138, 124, '_elementor_version', '3.33.0'),
(1139, 124, '_elementor_pro_version', '3.25.4'),
(1140, 124, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d7f794\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c1d71d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e37ee7c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e05de93\"}],\"pp_display_conditions\":[{\"_id\":\"f48e89e\"}]},\"elements\":[{\"id\":\"70aa1cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"99a76e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef09700\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0690d2e\"}],\"pp_display_conditions\":[{\"_id\":\"1e28c58\"}]},\"elements\":[{\"id\":\"d7a8ef4\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"b644c7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"71ed768\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ad78b78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f582a85\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d2fcf71\"}],\"pp_display_conditions\":[{\"_id\":\"5d79e2f\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1081, 119, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3733, 377, '_elementor_edit_mode', 'builder'),
(3734, 377, '_elementor_template_type', 'header'),
(3735, 377, '_elementor_version', '3.33.0'),
(3736, 377, '_elementor_pro_version', '3.25.4'),
(3737, 377, '_wp_page_template', 'default'),
(3738, 377, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"10\",\"bottom\":\"9\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"\"},\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#4E4F52\"},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"150758c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1095, 120, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3749, 378, '_elementor_edit_mode', 'builder'),
(3750, 378, '_elementor_template_type', 'header'),
(3751, 378, '_elementor_version', '3.33.0'),
(3752, 378, '_elementor_pro_version', '3.25.4'),
(3753, 378, '_wp_page_template', 'default'),
(3754, 378, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"10\",\"bottom\":\"9\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"\"},\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#4E4F5273\"},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"150758c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1109, 121, '_elementor_page_settings', 'a:0:{}'),
(1112, 122, '_wp_page_template', 'elementor_header_footer'),
(1113, 122, '_elementor_edit_mode', 'builder'),
(1114, 122, '_elementor_template_type', 'wp-page'),
(1115, 122, '_elementor_version', '3.33.0'),
(1116, 122, '_elementor_pro_version', '3.25.4'),
(1117, 122, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1119, 122, '_elementor_page_settings', 'a:0:{}'),
(1155, 126, '_wp_page_template', 'elementor_header_footer'),
(1156, 126, '_elementor_edit_mode', 'builder'),
(1157, 126, '_elementor_template_type', 'wp-page'),
(1158, 126, '_elementor_version', '3.33.0'),
(1159, 126, '_elementor_pro_version', '3.25.4'),
(1160, 126, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1122, 123, '_wp_page_template', 'elementor_header_footer'),
(1123, 123, '_elementor_edit_mode', 'builder'),
(1124, 123, '_elementor_template_type', 'wp-page'),
(1125, 123, '_elementor_version', '3.33.0'),
(1126, 123, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1127, 123, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d7f794\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c1d71d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e37ee7c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e05de93\"}],\"pp_display_conditions\":[{\"_id\":\"f48e89e\"}]},\"elements\":[{\"id\":\"70aa1cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"99a76e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef09700\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0690d2e\"}],\"pp_display_conditions\":[{\"_id\":\"1e28c58\"}]},\"elements\":[{\"id\":\"d7a8ef4\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"b644c7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"71ed768\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ad78b78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f582a85\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d2fcf71\"}],\"pp_display_conditions\":[{\"_id\":\"5d79e2f\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1168, 127, '_wp_page_template', 'elementor_header_footer'),
(1169, 127, '_elementor_edit_mode', 'builder'),
(1170, 127, '_elementor_template_type', 'wp-page'),
(1171, 127, '_elementor_version', '3.33.0'),
(1172, 127, '_elementor_pro_version', '3.25.4'),
(1173, 127, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1201, 130, '_wp_page_template', 'elementor_header_footer'),
(1202, 130, '_elementor_edit_mode', 'builder'),
(1203, 130, '_elementor_template_type', 'wp-page'),
(1204, 130, '_elementor_version', '3.33.0'),
(1142, 124, '_elementor_page_settings', 'a:0:{}'),
(1145, 125, '_wp_page_template', 'elementor_header_footer'),
(1146, 125, '_elementor_edit_mode', 'builder'),
(1147, 125, '_elementor_template_type', 'wp-page'),
(1148, 125, '_elementor_version', '3.33.0'),
(1149, 125, '_elementor_pro_version', '3.25.4'),
(1150, 125, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d7f794\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c1d71d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e37ee7c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e05de93\"}],\"pp_display_conditions\":[{\"_id\":\"f48e89e\"}]},\"elements\":[{\"id\":\"70aa1cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"99a76e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef09700\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0690d2e\"}],\"pp_display_conditions\":[{\"_id\":\"1e28c58\"}]},\"elements\":[{\"id\":\"d7a8ef4\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"b644c7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"71ed768\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ad78b78\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f582a85\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d2fcf71\"}],\"pp_display_conditions\":[{\"_id\":\"5d79e2f\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1152, 125, '_elementor_page_settings', 'a:0:{}'),
(1221, 132, '_wp_page_template', 'elementor_header_footer'),
(1175, 127, '_elementor_page_settings', 'a:0:{}'),
(1178, 128, '_wp_page_template', 'elementor_header_footer'),
(1179, 128, '_elementor_edit_mode', 'builder'),
(1180, 128, '_elementor_template_type', 'wp-page'),
(1181, 128, '_elementor_version', '3.33.0'),
(1182, 128, '_elementor_pro_version', '3.25.4'),
(1183, 128, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1185, 128, '_elementor_page_settings', 'a:0:{}'),
(1354, 144, '_elementor_edit_mode', 'builder'),
(1188, 129, '_wp_page_template', 'elementor_header_footer'),
(1189, 129, '_elementor_edit_mode', 'builder'),
(1190, 129, '_elementor_template_type', 'wp-page'),
(1191, 129, '_elementor_version', '3.33.0'),
(1192, 129, '_elementor_pro_version', '3.25.4'),
(1193, 129, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1254, 135, '_wp_page_template', 'elementor_header_footer'),
(1234, 133, '_wp_page_template', 'elementor_header_footer'),
(1235, 133, '_elementor_edit_mode', 'builder'),
(1236, 133, '_elementor_template_type', 'wp-page'),
(1237, 133, '_elementor_version', '3.33.0'),
(1238, 133, '_elementor_pro_version', '3.25.4'),
(1239, 133, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1208, 130, '_elementor_page_settings', 'a:0:{}'),
(1211, 131, '_wp_page_template', 'elementor_header_footer'),
(1212, 131, '_elementor_edit_mode', 'builder'),
(1213, 131, '_elementor_template_type', 'wp-page'),
(1214, 131, '_elementor_version', '3.33.0'),
(1215, 131, '_elementor_pro_version', '3.25.4'),
(1216, 131, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1218, 131, '_elementor_page_settings', 'a:0:{}'),
(1222, 132, '_elementor_edit_mode', 'builder'),
(1223, 132, '_elementor_template_type', 'wp-page'),
(1224, 132, '_elementor_version', '3.33.0'),
(1225, 132, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1226, 132, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1287, 138, '_wp_page_template', 'elementor_header_footer'),
(1267, 136, '_wp_page_template', 'elementor_header_footer'),
(1268, 136, '_elementor_edit_mode', 'builder'),
(1269, 136, '_elementor_template_type', 'wp-page'),
(1270, 136, '_elementor_version', '3.33.0'),
(1271, 136, '_elementor_pro_version', '3.25.4'),
(1272, 136, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1241, 133, '_elementor_page_settings', 'a:0:{}'),
(1244, 134, '_wp_page_template', 'elementor_header_footer'),
(1245, 134, '_elementor_edit_mode', 'builder'),
(1246, 134, '_elementor_template_type', 'wp-page'),
(1247, 134, '_elementor_version', '3.33.0'),
(1248, 134, '_elementor_pro_version', '3.25.4'),
(1249, 134, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1251, 134, '_elementor_page_settings', 'a:0:{}'),
(1255, 135, '_elementor_edit_mode', 'builder'),
(1256, 135, '_elementor_template_type', 'wp-page'),
(1257, 135, '_elementor_version', '3.33.0'),
(1258, 135, '_elementor_pro_version', '3.25.4'),
(1259, 135, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1353, 144, '_wp_page_template', 'elementor_header_footer'),
(1300, 139, '_wp_page_template', 'elementor_header_footer'),
(1301, 139, '_elementor_edit_mode', 'builder'),
(1302, 139, '_elementor_template_type', 'wp-page'),
(1303, 139, '_elementor_version', '3.33.0'),
(1304, 139, '_elementor_pro_version', '3.25.4'),
(1305, 139, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1274, 136, '_elementor_page_settings', 'a:0:{}'),
(1277, 137, '_wp_page_template', 'elementor_header_footer'),
(1278, 137, '_elementor_edit_mode', 'builder'),
(1279, 137, '_elementor_template_type', 'wp-page'),
(1280, 137, '_elementor_version', '3.33.0'),
(1281, 137, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1282, 137, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1284, 137, '_elementor_page_settings', 'a:0:{}'),
(1288, 138, '_elementor_edit_mode', 'builder'),
(1289, 138, '_elementor_template_type', 'wp-page'),
(1290, 138, '_elementor_version', '3.33.0'),
(1291, 138, '_elementor_pro_version', '3.25.4'),
(1292, 138, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1355, 144, '_elementor_template_type', 'wp-page'),
(1333, 142, '_wp_page_template', 'elementor_header_footer'),
(1334, 142, '_elementor_edit_mode', 'builder'),
(1335, 142, '_elementor_template_type', 'wp-page'),
(1336, 142, '_elementor_version', '3.33.0'),
(1337, 142, '_elementor_pro_version', '3.25.4'),
(1338, 142, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Verdana\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1307, 139, '_elementor_page_settings', 'a:0:{}'),
(1310, 140, '_wp_page_template', 'elementor_header_footer'),
(1311, 140, '_elementor_edit_mode', 'builder'),
(1312, 140, '_elementor_template_type', 'wp-page'),
(1313, 140, '_elementor_version', '3.33.0'),
(1314, 140, '_elementor_pro_version', '3.25.4'),
(1315, 140, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1317, 140, '_elementor_page_settings', 'a:0:{}'),
(1320, 141, '_wp_page_template', 'elementor_header_footer'),
(1321, 141, '_elementor_edit_mode', 'builder'),
(1322, 141, '_elementor_template_type', 'wp-page'),
(1323, 141, '_elementor_version', '3.33.0'),
(1324, 141, '_elementor_pro_version', '3.25.4'),
(1325, 141, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Verdana\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1388, 148, '_wp_page_template', 'elementor_header_footer'),
(1368, 146, '_wp_page_template', 'elementor_header_footer'),
(1369, 146, '_elementor_edit_mode', 'builder'),
(1370, 146, '_elementor_template_type', 'wp-page'),
(1371, 146, '_elementor_version', '3.33.0'),
(1372, 146, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1373, 146, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1340, 142, '_elementor_page_settings', 'a:0:{}'),
(1343, 143, '_wp_page_template', 'elementor_header_footer'),
(1344, 143, '_elementor_edit_mode', 'builder'),
(1345, 143, '_elementor_template_type', 'wp-page'),
(1346, 143, '_elementor_version', '3.33.0'),
(1347, 143, '_elementor_pro_version', '3.25.4'),
(1348, 143, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Verdana\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1350, 143, '_elementor_page_settings', 'a:0:{}'),
(1356, 144, '_elementor_version', '3.33.0'),
(1357, 144, '_elementor_pro_version', '3.25.4'),
(1358, 144, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1401, 149, '_wp_page_template', 'elementor_header_footer'),
(1402, 149, '_elementor_edit_mode', 'builder'),
(1403, 149, '_elementor_template_type', 'wp-page'),
(1404, 149, '_elementor_version', '3.33.0'),
(1405, 149, '_elementor_pro_version', '3.25.4'),
(1406, 149, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1366, 145, '_wp_trash_meta_status', 'publish'),
(1367, 145, '_wp_trash_meta_time', '1763217636'),
(1375, 146, '_elementor_page_settings', 'a:0:{}'),
(1378, 147, '_wp_page_template', 'elementor_header_footer'),
(1379, 147, '_elementor_edit_mode', 'builder'),
(1380, 147, '_elementor_template_type', 'wp-page'),
(1381, 147, '_elementor_version', '3.33.0'),
(1382, 147, '_elementor_pro_version', '3.25.4'),
(1383, 147, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1385, 147, '_elementor_page_settings', 'a:0:{}'),
(1389, 148, '_elementor_edit_mode', 'builder'),
(1390, 148, '_elementor_template_type', 'wp-page'),
(1391, 148, '_elementor_version', '3.33.0'),
(1392, 148, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1393, 148, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1454, 154, '_wp_page_template', 'elementor_header_footer'),
(1434, 152, '_wp_page_template', 'elementor_header_footer'),
(1435, 152, '_elementor_edit_mode', 'builder'),
(1436, 152, '_elementor_template_type', 'wp-page'),
(1437, 152, '_elementor_version', '3.33.0'),
(1438, 152, '_elementor_pro_version', '3.25.4'),
(1439, 152, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1408, 149, '_elementor_page_settings', 'a:0:{}'),
(1411, 150, '_wp_page_template', 'elementor_header_footer'),
(1412, 150, '_elementor_edit_mode', 'builder'),
(1413, 150, '_elementor_template_type', 'wp-page'),
(1414, 150, '_elementor_version', '3.33.0'),
(1415, 150, '_elementor_pro_version', '3.25.4'),
(1416, 150, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1418, 150, '_elementor_page_settings', 'a:0:{}'),
(1421, 151, '_wp_page_template', 'elementor_header_footer'),
(1422, 151, '_elementor_edit_mode', 'builder'),
(1423, 151, '_elementor_template_type', 'wp-page'),
(1424, 151, '_elementor_version', '3.33.0'),
(1425, 151, '_elementor_pro_version', '3.25.4'),
(1426, 151, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1487, 157, '_wp_page_template', 'elementor_header_footer'),
(1467, 155, '_wp_page_template', 'elementor_header_footer'),
(1468, 155, '_elementor_edit_mode', 'builder'),
(1469, 155, '_elementor_template_type', 'wp-page'),
(1470, 155, '_elementor_version', '3.33.0'),
(1471, 155, '_elementor_pro_version', '3.25.4'),
(1472, 155, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1601, 168, '_wp_page_template', 'elementor_header_footer'),
(1441, 152, '_elementor_page_settings', 'a:0:{}'),
(1444, 153, '_wp_page_template', 'elementor_header_footer'),
(1445, 153, '_elementor_edit_mode', 'builder'),
(1446, 153, '_elementor_template_type', 'wp-page'),
(1447, 153, '_elementor_version', '3.33.0'),
(1448, 153, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1449, 153, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1451, 153, '_elementor_page_settings', 'a:0:{}'),
(1455, 154, '_elementor_edit_mode', 'builder'),
(1456, 154, '_elementor_template_type', 'wp-page'),
(1457, 154, '_elementor_version', '3.33.0'),
(1458, 154, '_elementor_pro_version', '3.25.4'),
(1459, 154, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1522, 161, '_wp_page_template', 'elementor_header_footer'),
(1502, 159, '_wp_page_template', 'elementor_header_footer'),
(1503, 159, '_elementor_edit_mode', 'builder'),
(1504, 159, '_elementor_template_type', 'wp-page'),
(1505, 159, '_elementor_version', '3.33.0'),
(1506, 159, '_elementor_pro_version', '3.25.4'),
(1507, 159, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1474, 155, '_elementor_page_settings', 'a:0:{}'),
(1477, 156, '_wp_page_template', 'elementor_header_footer'),
(1478, 156, '_elementor_edit_mode', 'builder'),
(1479, 156, '_elementor_template_type', 'wp-page'),
(1480, 156, '_elementor_version', '3.33.0'),
(1481, 156, '_elementor_pro_version', '3.25.4'),
(1482, 156, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1484, 156, '_elementor_page_settings', 'a:0:{}'),
(1488, 157, '_elementor_edit_mode', 'builder'),
(1489, 157, '_elementor_template_type', 'wp-page'),
(1490, 157, '_elementor_version', '3.33.0'),
(1491, 157, '_elementor_pro_version', '3.25.4'),
(1492, 157, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1555, 164, '_wp_page_template', 'elementor_header_footer'),
(1535, 162, '_wp_page_template', 'elementor_header_footer'),
(1536, 162, '_elementor_edit_mode', 'builder'),
(1537, 162, '_elementor_template_type', 'wp-page'),
(1538, 162, '_elementor_version', '3.33.0'),
(1539, 162, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1540, 162, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1500, 158, '_wp_attached_file', '2025/11/72966-1.jpg'),
(1501, 158, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:19:\"2025/11/72966-1.jpg\";s:8:\"filesize\";i:190054;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"72966-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14932;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"72966-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106862;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"72966-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7291;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"72966-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68164;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"72966-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199499;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1509, 159, '_elementor_page_settings', 'a:0:{}'),
(1512, 160, '_wp_page_template', 'elementor_header_footer'),
(1513, 160, '_elementor_edit_mode', 'builder'),
(1514, 160, '_elementor_template_type', 'wp-page'),
(1515, 160, '_elementor_version', '3.33.0'),
(1516, 160, '_elementor_pro_version', '3.25.4'),
(1517, 160, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1519, 160, '_elementor_page_settings', 'a:0:{}'),
(1523, 161, '_elementor_edit_mode', 'builder'),
(1524, 161, '_elementor_template_type', 'wp-page'),
(1525, 161, '_elementor_version', '3.33.0'),
(1526, 161, '_elementor_pro_version', '3.25.4'),
(1527, 161, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1568, 165, '_wp_page_template', 'elementor_header_footer'),
(1569, 165, '_elementor_edit_mode', 'builder'),
(1570, 165, '_elementor_template_type', 'wp-page'),
(1571, 165, '_elementor_version', '3.33.0'),
(1572, 165, '_elementor_pro_version', '3.25.4'),
(1573, 165, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1542, 162, '_elementor_page_settings', 'a:0:{}'),
(1545, 163, '_wp_page_template', 'elementor_header_footer'),
(1546, 163, '_elementor_edit_mode', 'builder'),
(1547, 163, '_elementor_template_type', 'wp-page'),
(1548, 163, '_elementor_version', '3.33.0'),
(1549, 163, '_elementor_pro_version', '3.25.4'),
(1550, 163, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1552, 163, '_elementor_page_settings', 'a:0:{}'),
(1556, 164, '_elementor_edit_mode', 'builder'),
(1557, 164, '_elementor_template_type', 'wp-page'),
(1558, 164, '_elementor_version', '3.33.0'),
(1559, 164, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1560, 164, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1621, 170, '_wp_page_template', 'elementor_header_footer'),
(1602, 168, '_elementor_edit_mode', 'builder'),
(1603, 168, '_elementor_template_type', 'wp-page'),
(1604, 168, '_elementor_version', '3.33.0'),
(1605, 168, '_elementor_pro_version', '3.25.4'),
(1606, 168, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_family\":\"Montserrat\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1575, 165, '_elementor_page_settings', 'a:0:{}'),
(1578, 166, '_wp_page_template', 'elementor_header_footer'),
(1579, 166, '_elementor_edit_mode', 'builder'),
(1580, 166, '_elementor_template_type', 'wp-page'),
(1581, 166, '_elementor_version', '3.33.0'),
(1582, 166, '_elementor_pro_version', '3.25.4'),
(1583, 166, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1585, 166, '_elementor_page_settings', 'a:0:{}'),
(1588, 167, '_wp_page_template', 'elementor_header_footer'),
(1589, 167, '_elementor_edit_mode', 'builder'),
(1590, 167, '_elementor_template_type', 'wp-page'),
(1591, 167, '_elementor_version', '3.33.0'),
(1592, 167, '_elementor_pro_version', '3.25.4'),
(1593, 167, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_family\":\"Montserrat\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1654, 173, '_wp_page_template', 'elementor_header_footer'),
(1634, 171, '_wp_page_template', 'elementor_header_footer'),
(1635, 171, '_elementor_edit_mode', 'builder'),
(1636, 171, '_elementor_template_type', 'wp-page'),
(1637, 171, '_elementor_version', '3.33.0'),
(1638, 171, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1639, 171, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_family\":\"Montserrat\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1700, 177, '_wp_page_template', 'elementor_header_footer'),
(1701, 177, '_elementor_edit_mode', 'builder'),
(1702, 177, '_elementor_template_type', 'wp-page'),
(1703, 177, '_elementor_version', '3.33.0'),
(1704, 177, '_elementor_pro_version', '3.25.4'),
(1705, 177, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"90cb20d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b03eec4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_family\":\"Montserrat\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1768, 184, '_wp_page_template', 'elementor_header_footer'),
(1769, 184, '_elementor_edit_mode', 'builder'),
(1770, 184, '_elementor_template_type', 'wp-page'),
(1771, 184, '_elementor_version', '3.33.0'),
(1772, 184, '_elementor_pro_version', '3.25.4'),
(1773, 184, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1834, 190, '_wp_page_template', 'elementor_header_footer'),
(1835, 190, '_elementor_edit_mode', 'builder'),
(1836, 190, '_elementor_template_type', 'wp-page'),
(1837, 190, '_elementor_version', '3.33.0'),
(1838, 190, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1839, 190, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e43d12c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":1.7,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7d5a114\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}]'),
(1900, 196, '_wp_page_template', 'elementor_header_footer'),
(1901, 196, '_elementor_edit_mode', 'builder'),
(1902, 196, '_elementor_template_type', 'wp-page'),
(1903, 196, '_elementor_version', '3.33.0'),
(1904, 196, '_elementor_pro_version', '3.25.4'),
(1905, 196, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1966, 202, '_wp_page_template', 'elementor_header_footer'),
(1608, 168, '_elementor_page_settings', 'a:0:{}'),
(1611, 169, '_wp_page_template', 'elementor_header_footer'),
(1612, 169, '_elementor_edit_mode', 'builder'),
(1613, 169, '_elementor_template_type', 'wp-page'),
(1614, 169, '_elementor_version', '3.33.0'),
(1615, 169, '_elementor_pro_version', '3.25.4'),
(1616, 169, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_family\":\"Montserrat\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1618, 169, '_elementor_page_settings', 'a:0:{}'),
(1622, 170, '_elementor_edit_mode', 'builder'),
(1623, 170, '_elementor_template_type', 'wp-page'),
(1624, 170, '_elementor_version', '3.33.0'),
(1625, 170, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1626, 170, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_family\":\"Montserrat\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1667, 174, '_wp_page_template', 'elementor_header_footer'),
(1668, 174, '_elementor_edit_mode', 'builder'),
(1669, 174, '_elementor_template_type', 'wp-page'),
(1670, 174, '_elementor_version', '3.33.0'),
(1671, 174, '_elementor_pro_version', '3.25.4'),
(1672, 174, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_family\":\"Montserrat\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1641, 171, '_elementor_page_settings', 'a:0:{}'),
(1644, 172, '_wp_page_template', 'elementor_header_footer'),
(1645, 172, '_elementor_edit_mode', 'builder'),
(1646, 172, '_elementor_template_type', 'wp-page'),
(1647, 172, '_elementor_version', '3.33.0'),
(1648, 172, '_elementor_pro_version', '3.25.4'),
(1649, 172, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_family\":\"Montserrat\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1651, 172, '_elementor_page_settings', 'a:0:{}'),
(1655, 173, '_elementor_edit_mode', 'builder'),
(1656, 173, '_elementor_template_type', 'wp-page'),
(1657, 173, '_elementor_version', '3.33.0'),
(1658, 173, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1659, 173, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_family\":\"Montserrat\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1674, 174, '_elementor_page_settings', 'a:0:{}'),
(1677, 175, '_wp_page_template', 'elementor_header_footer'),
(1678, 175, '_elementor_edit_mode', 'builder'),
(1679, 175, '_elementor_template_type', 'wp-page'),
(1680, 175, '_elementor_version', '3.33.0'),
(1681, 175, '_elementor_pro_version', '3.25.4'),
(1682, 175, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_family\":\"Montserrat\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1684, 175, '_elementor_page_settings', 'a:0:{}'),
(1720, 179, '_wp_page_template', 'elementor_header_footer'),
(1721, 179, '_elementor_edit_mode', 'builder'),
(1722, 179, '_elementor_template_type', 'wp-page'),
(1723, 179, '_elementor_version', '3.33.0'),
(1724, 179, '_elementor_pro_version', '3.25.4'),
(1725, 179, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1687, 176, '_wp_page_template', 'elementor_header_footer'),
(1688, 176, '_elementor_edit_mode', 'builder'),
(1689, 176, '_elementor_template_type', 'wp-page'),
(1690, 176, '_elementor_version', '3.33.0'),
(1691, 176, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1692, 176, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"90cb20d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b03eec4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_family\":\"Montserrat\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1753, 182, '_wp_page_template', 'elementor_header_footer'),
(1733, 180, '_wp_page_template', 'elementor_header_footer'),
(1734, 180, '_elementor_edit_mode', 'builder'),
(1735, 180, '_elementor_template_type', 'wp-page'),
(1736, 180, '_elementor_version', '3.33.0'),
(1737, 180, '_elementor_pro_version', '3.25.4'),
(1738, 180, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1801, 187, '_wp_page_template', 'elementor_header_footer'),
(1707, 177, '_elementor_page_settings', 'a:0:{}'),
(1710, 178, '_wp_page_template', 'elementor_header_footer'),
(1711, 178, '_elementor_edit_mode', 'builder'),
(1712, 178, '_elementor_template_type', 'wp-page'),
(1713, 178, '_elementor_version', '3.33.0'),
(1714, 178, '_elementor_pro_version', '3.25.4'),
(1715, 178, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"90cb20d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b03eec4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_family\":\"Montserrat\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1717, 178, '_elementor_page_settings', 'a:0:{}'),
(1788, 186, '_wp_page_template', 'elementor_header_footer'),
(1740, 180, '_elementor_page_settings', 'a:0:{}'),
(1743, 181, '_wp_page_template', 'elementor_header_footer'),
(1744, 181, '_elementor_edit_mode', 'builder'),
(1745, 181, '_elementor_template_type', 'wp-page'),
(1746, 181, '_elementor_version', '3.33.0'),
(1747, 181, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1748, 181, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1750, 181, '_elementor_page_settings', 'a:0:{}'),
(1754, 182, '_elementor_edit_mode', 'builder'),
(1755, 182, '_elementor_template_type', 'wp-page'),
(1756, 182, '_elementor_version', '3.33.0'),
(1757, 182, '_elementor_pro_version', '3.25.4'),
(1758, 182, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1802, 187, '_elementor_edit_mode', 'builder'),
(1803, 187, '_elementor_template_type', 'wp-page'),
(1804, 187, '_elementor_version', '3.33.0'),
(1805, 187, '_elementor_pro_version', '3.25.4'),
(1806, 187, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1766, 183, '_wp_trash_meta_status', 'publish'),
(1767, 183, '_wp_trash_meta_time', '1763270980'),
(1775, 184, '_elementor_page_settings', 'a:0:{}'),
(1778, 185, '_wp_page_template', 'elementor_header_footer'),
(1779, 185, '_elementor_edit_mode', 'builder'),
(1780, 185, '_elementor_template_type', 'wp-page'),
(1781, 185, '_elementor_version', '3.33.0'),
(1782, 185, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1783, 185, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1785, 185, '_elementor_page_settings', 'a:0:{}'),
(1789, 186, '_elementor_edit_mode', 'builder'),
(1790, 186, '_elementor_template_type', 'wp-page'),
(1791, 186, '_elementor_version', '3.33.0'),
(1792, 186, '_elementor_pro_version', '3.25.4'),
(1793, 186, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1808, 187, '_elementor_page_settings', 'a:0:{}'),
(1811, 188, '_wp_page_template', 'elementor_header_footer'),
(1812, 188, '_elementor_edit_mode', 'builder'),
(1813, 188, '_elementor_template_type', 'wp-page'),
(1814, 188, '_elementor_version', '3.33.0'),
(1815, 188, '_elementor_pro_version', '3.25.4'),
(1816, 188, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1818, 188, '_elementor_page_settings', 'a:0:{}'),
(1854, 192, '_wp_page_template', 'elementor_header_footer'),
(1855, 192, '_elementor_edit_mode', 'builder'),
(1856, 192, '_elementor_template_type', 'wp-page'),
(1857, 192, '_elementor_version', '3.33.0'),
(1858, 192, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1859, 192, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(1821, 189, '_wp_page_template', 'elementor_header_footer'),
(1822, 189, '_elementor_edit_mode', 'builder'),
(1823, 189, '_elementor_template_type', 'wp-page'),
(1824, 189, '_elementor_version', '3.33.0'),
(1825, 189, '_elementor_pro_version', '3.25.4'),
(1826, 189, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e43d12c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":1.7,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7d5a114\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}]'),
(1867, 193, '_wp_page_template', 'elementor_header_footer'),
(1868, 193, '_elementor_edit_mode', 'builder'),
(1869, 193, '_elementor_template_type', 'wp-page'),
(1870, 193, '_elementor_version', '3.33.0'),
(1871, 193, '_elementor_pro_version', '3.25.4'),
(1872, 193, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(1841, 190, '_elementor_page_settings', 'a:0:{}'),
(1844, 191, '_wp_page_template', 'elementor_header_footer'),
(1845, 191, '_elementor_edit_mode', 'builder'),
(1846, 191, '_elementor_template_type', 'wp-page'),
(1847, 191, '_elementor_version', '3.33.0'),
(1848, 191, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1849, 191, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e43d12c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":11,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":1.7,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"7d5a114\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}]'),
(1851, 191, '_elementor_page_settings', 'a:0:{}'),
(1920, 198, '_wp_page_template', 'elementor_header_footer'),
(1874, 193, '_elementor_page_settings', 'a:0:{}'),
(1877, 194, '_wp_page_template', 'elementor_header_footer'),
(1878, 194, '_elementor_edit_mode', 'builder'),
(1879, 194, '_elementor_template_type', 'wp-page'),
(1880, 194, '_elementor_version', '3.33.0'),
(1881, 194, '_elementor_pro_version', '3.25.4'),
(1882, 194, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(1884, 194, '_elementor_page_settings', 'a:0:{}'),
(1887, 195, '_wp_page_template', 'elementor_header_footer'),
(1888, 195, '_elementor_edit_mode', 'builder'),
(1889, 195, '_elementor_template_type', 'wp-page'),
(1890, 195, '_elementor_version', '3.33.0'),
(1891, 195, '_elementor_pro_version', '3.25.4'),
(1892, 195, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1933, 199, '_wp_page_template', 'elementor_header_footer'),
(1934, 199, '_elementor_edit_mode', 'builder'),
(1935, 199, '_elementor_template_type', 'wp-page'),
(1936, 199, '_elementor_version', '3.33.0'),
(1937, 199, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1938, 199, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1907, 196, '_elementor_page_settings', 'a:0:{}'),
(1910, 197, '_wp_page_template', 'elementor_header_footer'),
(1911, 197, '_elementor_edit_mode', 'builder'),
(1912, 197, '_elementor_template_type', 'wp-page'),
(1913, 197, '_elementor_version', '3.33.0'),
(1914, 197, '_elementor_pro_version', '3.25.4'),
(1915, 197, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1917, 197, '_elementor_page_settings', 'a:0:{}'),
(1921, 198, '_elementor_edit_mode', 'builder'),
(1922, 198, '_elementor_template_type', 'wp-page'),
(1923, 198, '_elementor_version', '3.33.0'),
(1924, 198, '_elementor_pro_version', '3.25.4'),
(1925, 198, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1967, 202, '_elementor_edit_mode', 'builder'),
(1968, 202, '_elementor_template_type', 'wp-page'),
(1969, 202, '_elementor_version', '3.33.0'),
(1970, 202, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1971, 202, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: red;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1940, 199, '_elementor_page_settings', 'a:0:{}'),
(1943, 200, '_wp_page_template', 'elementor_header_footer'),
(1944, 200, '_elementor_edit_mode', 'builder'),
(1945, 200, '_elementor_template_type', 'wp-page'),
(1946, 200, '_elementor_version', '3.33.0'),
(1947, 200, '_elementor_pro_version', '3.25.4'),
(1948, 200, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1950, 200, '_elementor_page_settings', 'a:0:{}'),
(1953, 201, '_wp_page_template', 'elementor_header_footer'),
(1954, 201, '_elementor_edit_mode', 'builder'),
(1955, 201, '_elementor_template_type', 'wp-page'),
(1956, 201, '_elementor_version', '3.33.0'),
(1957, 201, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1958, 201, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: red;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1997, 205, '_wp_page_template', 'elementor_header_footer'),
(1998, 205, '_elementor_edit_mode', 'builder'),
(1999, 205, '_elementor_template_type', 'wp-page'),
(2000, 205, '_elementor_version', '3.33.0'),
(2001, 205, '_elementor_pro_version', '3.25.4'),
(2002, 205, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: red;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1973, 202, '_elementor_page_settings', 'a:0:{}'),
(1976, 203, '_wp_page_template', 'elementor_header_footer'),
(1977, 203, '_elementor_edit_mode', 'builder'),
(1978, 203, '_elementor_template_type', 'wp-page'),
(1979, 203, '_elementor_version', '3.33.0'),
(1980, 203, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1981, 203, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: red;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1983, 203, '_elementor_page_settings', 'a:0:{}'),
(1986, 204, '_wp_page_template', 'elementor_header_footer'),
(1987, 204, '_elementor_edit_mode', 'builder'),
(1988, 204, '_elementor_template_type', 'wp-page'),
(1989, 204, '_elementor_version', '3.33.0'),
(1990, 204, '_elementor_pro_version', '3.25.4'),
(1991, 204, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: red;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2004, 205, '_elementor_page_settings', 'a:0:{}'),
(2005, 206, '_wp_page_template', 'elementor_header_footer'),
(2006, 206, '_elementor_edit_mode', 'builder'),
(2007, 206, '_elementor_template_type', 'wp-page'),
(2008, 206, '_elementor_version', '3.33.0'),
(2009, 206, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2010, 206, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: red;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2012, 206, '_elementor_page_settings', 'a:0:{}'),
(2013, 207, '_wp_page_template', 'elementor_header_footer'),
(2014, 207, '_elementor_edit_mode', 'builder'),
(2015, 207, '_elementor_template_type', 'wp-page'),
(2016, 207, '_elementor_version', '3.33.0'),
(2017, 207, '_elementor_pro_version', '3.25.4'),
(2018, 207, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2024, 208, '_wp_page_template', 'elementor_header_footer'),
(2025, 208, '_elementor_edit_mode', 'builder'),
(2026, 208, '_elementor_template_type', 'wp-page'),
(2027, 208, '_elementor_version', '3.33.0'),
(2028, 208, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2029, 208, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2090, 214, '_wp_page_template', 'elementor_header_footer'),
(2091, 214, '_elementor_edit_mode', 'builder'),
(2057, 211, '_wp_page_template', 'elementor_header_footer'),
(2058, 211, '_elementor_edit_mode', 'builder'),
(2059, 211, '_elementor_template_type', 'wp-page'),
(2060, 211, '_elementor_version', '3.33.0'),
(2061, 211, '_elementor_pro_version', '3.25.4'),
(2062, 211, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2031, 208, '_elementor_page_settings', 'a:0:{}'),
(2034, 209, '_wp_page_template', 'elementor_header_footer'),
(2035, 209, '_elementor_edit_mode', 'builder'),
(2036, 209, '_elementor_template_type', 'wp-page'),
(2037, 209, '_elementor_version', '3.33.0'),
(2038, 209, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2039, 209, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2041, 209, '_elementor_page_settings', 'a:0:{}'),
(2044, 210, '_wp_page_template', 'elementor_header_footer'),
(2045, 210, '_elementor_edit_mode', 'builder'),
(2046, 210, '_elementor_template_type', 'wp-page'),
(2047, 210, '_elementor_version', '3.33.0'),
(2048, 210, '_elementor_pro_version', '3.25.4'),
(2049, 210, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2092, 214, '_elementor_template_type', 'wp-page'),
(2093, 214, '_elementor_version', '3.33.0'),
(2094, 214, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2095, 214, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2064, 211, '_elementor_page_settings', 'a:0:{}'),
(2067, 212, '_wp_page_template', 'elementor_header_footer'),
(2068, 212, '_elementor_edit_mode', 'builder'),
(2069, 212, '_elementor_template_type', 'wp-page'),
(2070, 212, '_elementor_version', '3.33.0'),
(2071, 212, '_elementor_pro_version', '3.25.4'),
(2072, 212, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2074, 212, '_elementor_page_settings', 'a:0:{}'),
(2077, 213, '_wp_page_template', 'elementor_header_footer'),
(2078, 213, '_elementor_edit_mode', 'builder'),
(2079, 213, '_elementor_template_type', 'wp-page'),
(2080, 213, '_elementor_version', '3.33.0'),
(2081, 213, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2082, 213, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2143, 219, '_wp_page_template', 'elementor_header_footer'),
(2123, 217, '_wp_page_template', 'elementor_header_footer'),
(2124, 217, '_elementor_edit_mode', 'builder'),
(2125, 217, '_elementor_template_type', 'wp-page'),
(2126, 217, '_elementor_version', '3.33.0'),
(2127, 217, '_elementor_pro_version', '3.25.4'),
(2128, 217, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2097, 214, '_elementor_page_settings', 'a:0:{}'),
(2100, 215, '_wp_page_template', 'elementor_header_footer'),
(2101, 215, '_elementor_edit_mode', 'builder'),
(2102, 215, '_elementor_template_type', 'wp-page'),
(2103, 215, '_elementor_version', '3.33.0'),
(2104, 215, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2105, 215, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2107, 215, '_elementor_page_settings', 'a:0:{}'),
(2110, 216, '_wp_page_template', 'elementor_header_footer'),
(2111, 216, '_elementor_edit_mode', 'builder'),
(2112, 216, '_elementor_template_type', 'wp-page'),
(2113, 216, '_elementor_version', '3.33.0'),
(2114, 216, '_elementor_pro_version', '3.25.4'),
(2115, 216, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2156, 220, '_wp_page_template', 'elementor_header_footer'),
(2157, 220, '_elementor_edit_mode', 'builder'),
(2158, 220, '_elementor_template_type', 'wp-page'),
(2159, 220, '_elementor_version', '3.33.0'),
(2160, 220, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2161, 220, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2130, 217, '_elementor_page_settings', 'a:0:{}'),
(2133, 218, '_wp_page_template', 'elementor_header_footer'),
(2134, 218, '_elementor_edit_mode', 'builder'),
(2135, 218, '_elementor_template_type', 'wp-page'),
(2136, 218, '_elementor_version', '3.33.0'),
(2137, 218, '_elementor_pro_version', '3.25.4'),
(2138, 218, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2140, 218, '_elementor_page_settings', 'a:0:{}'),
(2144, 219, '_elementor_edit_mode', 'builder'),
(2145, 219, '_elementor_template_type', 'wp-page'),
(2146, 219, '_elementor_version', '3.33.0'),
(2147, 219, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2148, 219, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2209, 225, '_wp_page_template', 'elementor_header_footer'),
(2189, 223, '_wp_page_template', 'elementor_header_footer'),
(2190, 223, '_elementor_edit_mode', 'builder'),
(2191, 223, '_elementor_template_type', 'wp-page'),
(2192, 223, '_elementor_version', '3.33.0'),
(2193, 223, '_elementor_pro_version', '3.25.4'),
(2194, 223, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"109\",\"right\":\"109\",\"bottom\":\"109\",\"left\":\"109\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2163, 220, '_elementor_page_settings', 'a:0:{}'),
(2166, 221, '_wp_page_template', 'elementor_header_footer'),
(2167, 221, '_elementor_edit_mode', 'builder'),
(2168, 221, '_elementor_template_type', 'wp-page'),
(2169, 221, '_elementor_version', '3.33.0'),
(2170, 221, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2171, 221, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2173, 221, '_elementor_page_settings', 'a:0:{}'),
(2176, 222, '_wp_page_template', 'elementor_header_footer'),
(2177, 222, '_elementor_edit_mode', 'builder'),
(2178, 222, '_elementor_template_type', 'wp-page'),
(2179, 222, '_elementor_version', '3.33.0'),
(2180, 222, '_elementor_pro_version', '3.25.4'),
(2181, 222, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"109\",\"right\":\"109\",\"bottom\":\"109\",\"left\":\"109\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2222, 226, '_wp_page_template', 'elementor_header_footer'),
(2223, 226, '_elementor_edit_mode', 'builder'),
(2224, 226, '_elementor_template_type', 'wp-page'),
(2225, 226, '_elementor_version', '3.33.0'),
(2226, 226, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2227, 226, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"109\",\"bottom\":\"109\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2196, 223, '_elementor_page_settings', 'a:0:{}'),
(2199, 224, '_wp_page_template', 'elementor_header_footer'),
(2200, 224, '_elementor_edit_mode', 'builder'),
(2201, 224, '_elementor_template_type', 'wp-page'),
(2202, 224, '_elementor_version', '3.33.0'),
(2203, 224, '_elementor_pro_version', '3.25.4'),
(2204, 224, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"109\",\"right\":\"109\",\"bottom\":\"109\",\"left\":\"109\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2206, 224, '_elementor_page_settings', 'a:0:{}'),
(2210, 225, '_elementor_edit_mode', 'builder'),
(2211, 225, '_elementor_template_type', 'wp-page'),
(2212, 225, '_elementor_version', '3.33.0'),
(2213, 225, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2214, 225, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"109\",\"bottom\":\"109\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2269, 231, '_wp_page_template', 'elementor_header_footer'),
(2253, 229, '_wp_page_template', 'elementor_header_footer'),
(2254, 229, '_elementor_edit_mode', 'builder'),
(2255, 229, '_elementor_template_type', 'wp-page'),
(2256, 229, '_elementor_version', '3.33.0'),
(2257, 229, '_elementor_pro_version', '3.25.4'),
(2258, 229, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 11px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"109\",\"bottom\":\"109\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2229, 226, '_elementor_page_settings', 'a:0:{}'),
(2232, 227, '_wp_page_template', 'elementor_header_footer'),
(2233, 227, '_elementor_edit_mode', 'builder'),
(2234, 227, '_elementor_template_type', 'wp-page'),
(2235, 227, '_elementor_version', '3.33.0'),
(2236, 227, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2237, 227, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"109\",\"bottom\":\"109\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2239, 227, '_elementor_page_settings', 'a:0:{}'),
(2242, 228, '_wp_page_template', 'elementor_header_footer'),
(2243, 228, '_elementor_edit_mode', 'builder'),
(2244, 228, '_elementor_template_type', 'wp-page'),
(2245, 228, '_elementor_version', '3.33.0'),
(2246, 228, '_elementor_pro_version', '3.25.4'),
(2247, 228, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 11px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"109\",\"bottom\":\"109\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2260, 229, '_elementor_page_settings', 'a:0:{}'),
(2261, 230, '_wp_page_template', 'elementor_header_footer'),
(2262, 230, '_elementor_edit_mode', 'builder'),
(2263, 230, '_elementor_template_type', 'wp-page'),
(2264, 230, '_elementor_version', '3.33.0'),
(2265, 230, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2266, 230, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 11px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"109\",\"bottom\":\"109\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2268, 230, '_elementor_page_settings', 'a:0:{}'),
(2270, 231, '_elementor_edit_mode', 'builder'),
(2271, 231, '_elementor_template_type', 'wp-page'),
(2272, 231, '_elementor_version', '3.33.0'),
(2273, 231, '_elementor_pro_version', '3.25.4'),
(2274, 231, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 11px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2300, 234, '_wp_page_template', 'elementor_header_footer'),
(2280, 232, '_wp_page_template', 'elementor_header_footer'),
(2281, 232, '_elementor_edit_mode', 'builder'),
(2282, 232, '_elementor_template_type', 'wp-page'),
(2283, 232, '_elementor_version', '3.33.0'),
(2284, 232, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2285, 232, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 11px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2327, 237, '_wp_page_template', 'elementor_header_footer'),
(2311, 235, '_wp_page_template', 'elementor_header_footer'),
(2312, 235, '_elementor_edit_mode', 'builder'),
(2313, 235, '_elementor_template_type', 'wp-page'),
(2314, 235, '_elementor_version', '3.33.0'),
(2315, 235, '_elementor_pro_version', '3.25.4'),
(2316, 235, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 11px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2287, 232, '_elementor_page_settings', 'a:0:{}'),
(2290, 233, '_wp_page_template', 'elementor_header_footer'),
(2291, 233, '_elementor_edit_mode', 'builder'),
(2292, 233, '_elementor_template_type', 'wp-page'),
(2293, 233, '_elementor_version', '3.33.0'),
(2294, 233, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2295, 233, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 11px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2297, 233, '_elementor_page_settings', 'a:0:{}'),
(2301, 234, '_elementor_edit_mode', 'builder'),
(2302, 234, '_elementor_template_type', 'wp-page'),
(2303, 234, '_elementor_version', '3.33.0'),
(2304, 234, '_elementor_pro_version', '3.25.4'),
(2305, 234, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 11px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2318, 235, '_elementor_page_settings', 'a:0:{}'),
(2319, 236, '_wp_page_template', 'elementor_header_footer'),
(2320, 236, '_elementor_edit_mode', 'builder'),
(2321, 236, '_elementor_template_type', 'wp-page'),
(2322, 236, '_elementor_version', '3.33.0'),
(2323, 236, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2324, 236, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 11px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":89,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2326, 236, '_elementor_page_settings', 'a:0:{}'),
(2328, 237, '_elementor_edit_mode', 'builder'),
(2329, 237, '_elementor_template_type', 'wp-page'),
(2330, 237, '_elementor_version', '3.33.0'),
(2331, 237, '_elementor_pro_version', '3.25.4'),
(2332, 237, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 11px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2352, 240, '_wp_page_template', 'elementor_header_footer'),
(2336, 238, '_wp_page_template', 'elementor_header_footer'),
(2337, 238, '_elementor_edit_mode', 'builder'),
(2338, 238, '_elementor_template_type', 'wp-page'),
(2339, 238, '_elementor_version', '3.33.0'),
(2340, 238, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2341, 238, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 11px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2343, 238, '_elementor_page_settings', 'a:0:{}'),
(2344, 239, '_wp_page_template', 'elementor_header_footer'),
(2345, 239, '_elementor_edit_mode', 'builder'),
(2346, 239, '_elementor_template_type', 'wp-page'),
(2347, 239, '_elementor_version', '3.33.0'),
(2348, 239, '_elementor_pro_version', '3.25.4'),
(2349, 239, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 11px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2351, 239, '_elementor_page_settings', 'a:0:{}'),
(2353, 240, '_elementor_edit_mode', 'builder'),
(2354, 240, '_elementor_template_type', 'wp-page'),
(2355, 240, '_elementor_version', '3.33.0'),
(2356, 240, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2357, 240, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 25px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2363, 241, '_wp_page_template', 'elementor_header_footer'),
(2364, 241, '_elementor_edit_mode', 'builder'),
(2365, 241, '_elementor_template_type', 'wp-page'),
(2366, 241, '_elementor_version', '3.33.0'),
(2367, 241, '_elementor_pro_version', '3.25.4'),
(2368, 241, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 25px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2416, 246, '_wp_page_template', 'elementor_header_footer'),
(2396, 244, '_wp_page_template', 'elementor_header_footer'),
(2397, 244, '_elementor_edit_mode', 'builder'),
(2398, 244, '_elementor_template_type', 'wp-page'),
(2399, 244, '_elementor_version', '3.33.0'),
(2400, 244, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2401, 244, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 35px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 25px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2460, 250, '_wp_attached_file', '2025/11/money_12976025.svg'),
(2461, 250, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1648;s:5:\"width\";i:64;s:6:\"height\";i:64;}'),
(2370, 241, '_elementor_page_settings', 'a:0:{}'),
(2373, 242, '_wp_page_template', 'elementor_header_footer'),
(2374, 242, '_elementor_edit_mode', 'builder'),
(2375, 242, '_elementor_template_type', 'wp-page'),
(2376, 242, '_elementor_version', '3.33.0'),
(2377, 242, '_elementor_pro_version', '3.25.4'),
(2378, 242, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 25px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2380, 242, '_elementor_page_settings', 'a:0:{}'),
(2383, 243, '_wp_page_template', 'elementor_header_footer'),
(2384, 243, '_elementor_edit_mode', 'builder'),
(2385, 243, '_elementor_template_type', 'wp-page'),
(2386, 243, '_elementor_version', '3.33.0'),
(2387, 243, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2388, 243, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 35px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 25px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2449, 249, '_wp_page_template', 'elementor_header_footer'),
(2429, 247, '_wp_page_template', 'elementor_header_footer'),
(2430, 247, '_elementor_edit_mode', 'builder'),
(2431, 247, '_elementor_template_type', 'wp-page'),
(2432, 247, '_elementor_version', '3.33.0'),
(2433, 247, '_elementor_pro_version', '3.25.4'),
(2434, 247, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 25px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2403, 244, '_elementor_page_settings', 'a:0:{}'),
(2406, 245, '_wp_page_template', 'elementor_header_footer'),
(2407, 245, '_elementor_edit_mode', 'builder'),
(2408, 245, '_elementor_template_type', 'wp-page'),
(2409, 245, '_elementor_version', '3.33.0'),
(2410, 245, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2411, 245, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 35px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 25px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2413, 245, '_elementor_page_settings', 'a:0:{}'),
(2417, 246, '_elementor_edit_mode', 'builder'),
(2418, 246, '_elementor_template_type', 'wp-page'),
(2419, 246, '_elementor_version', '3.33.0'),
(2420, 246, '_elementor_pro_version', '3.25.4'),
(2421, 246, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 25px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2463, 251, '_wp_page_template', 'elementor_header_footer'),
(2464, 251, '_elementor_edit_mode', 'builder'),
(2465, 251, '_elementor_template_type', 'wp-page'),
(2466, 251, '_elementor_version', '3.33.0'),
(2467, 251, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2468, 251, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2436, 247, '_elementor_page_settings', 'a:0:{}'),
(2439, 248, '_wp_page_template', 'elementor_header_footer'),
(2440, 248, '_elementor_edit_mode', 'builder'),
(2441, 248, '_elementor_template_type', 'wp-page'),
(2442, 248, '_elementor_version', '3.33.0'),
(2443, 248, '_elementor_pro_version', '3.25.4'),
(2444, 248, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 25px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2446, 248, '_elementor_page_settings', 'a:0:{}'),
(2450, 249, '_elementor_edit_mode', 'builder'),
(2451, 249, '_elementor_template_type', 'wp-page'),
(2452, 249, '_elementor_version', '3.33.0'),
(2453, 249, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2454, 249, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2470, 251, '_elementor_page_settings', 'a:0:{}'),
(2471, 252, '_wp_page_template', 'elementor_header_footer'),
(2472, 252, '_elementor_edit_mode', 'builder'),
(2473, 252, '_elementor_template_type', 'wp-page'),
(2474, 252, '_elementor_version', '3.33.0'),
(2475, 252, '_elementor_pro_version', '3.25.4'),
(2476, 252, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2478, 252, '_elementor_page_settings', 'a:0:{}'),
(2479, 253, '_wp_page_template', 'elementor_header_footer'),
(2480, 253, '_elementor_edit_mode', 'builder'),
(2481, 253, '_elementor_template_type', 'wp-page'),
(2482, 253, '_elementor_version', '3.33.0'),
(2483, 253, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2484, 253, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2510, 256, '_wp_page_template', 'elementor_header_footer'),
(2490, 254, '_wp_page_template', 'elementor_header_footer'),
(2491, 254, '_elementor_edit_mode', 'builder'),
(2492, 254, '_elementor_template_type', 'wp-page'),
(2493, 254, '_elementor_version', '3.33.0'),
(2494, 254, '_elementor_pro_version', '3.25.4'),
(2495, 254, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2530, 258, '_wp_page_template', 'elementor_header_footer'),
(2531, 258, '_elementor_edit_mode', 'builder'),
(2532, 258, '_elementor_template_type', 'wp-page'),
(2533, 258, '_elementor_version', '3.33.0'),
(2534, 258, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2535, 258, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2560, 261, '_elementor_version', '3.33.0'),
(2561, 261, '_elementor_pro_version', '3.25.4'),
(2562, 261, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\\n.services_style .services_box_style:hover .elementor-icon{\\n   \\n    top: 64px;\\n   transition: \\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2497, 254, '_elementor_page_settings', 'a:0:{}'),
(2500, 255, '_wp_page_template', 'elementor_header_footer'),
(2501, 255, '_elementor_edit_mode', 'builder'),
(2502, 255, '_elementor_template_type', 'wp-page'),
(2503, 255, '_elementor_version', '3.33.0'),
(2504, 255, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2505, 255, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2507, 255, '_elementor_page_settings', 'a:0:{}'),
(2511, 256, '_elementor_edit_mode', 'builder'),
(2512, 256, '_elementor_template_type', 'wp-page'),
(2513, 256, '_elementor_version', '3.33.0'),
(2514, 256, '_elementor_pro_version', '3.25.4'),
(2515, 256, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2546, 260, '_wp_page_template', 'elementor_header_footer'),
(2547, 260, '_elementor_edit_mode', 'builder'),
(2548, 260, '_elementor_template_type', 'wp-page'),
(2549, 260, '_elementor_version', '3.33.0'),
(2550, 260, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2551, 260, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\\n.services_style .services_box_style:hover .elementor-icon{\\n   \\n    top: 64px;\\n   transition: \\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2537, 258, '_elementor_page_settings', 'a:0:{}'),
(2538, 259, '_wp_page_template', 'elementor_header_footer'),
(2539, 259, '_elementor_edit_mode', 'builder'),
(2540, 259, '_elementor_template_type', 'wp-page'),
(2541, 259, '_elementor_version', '3.33.0'),
(2542, 259, '_elementor_pro_version', '3.25.4'),
(2543, 259, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2545, 259, '_elementor_page_settings', 'a:0:{}'),
(2557, 261, '_wp_page_template', 'elementor_header_footer'),
(2558, 261, '_elementor_edit_mode', 'builder'),
(2559, 261, '_elementor_template_type', 'wp-page'),
(2590, 264, '_wp_page_template', 'elementor_header_footer'),
(2591, 264, '_elementor_edit_mode', 'builder'),
(2592, 264, '_elementor_template_type', 'wp-page'),
(2593, 264, '_elementor_version', '3.33.0'),
(2594, 264, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2595, 264, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\\n.services_style .services_box_style:hover .elementor-icon{\\n   \\n    top: 64px;\\n   transition: \\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"39375f0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2564, 261, '_elementor_page_settings', 'a:0:{}'),
(2567, 262, '_wp_page_template', 'elementor_header_footer'),
(2568, 262, '_elementor_edit_mode', 'builder'),
(2569, 262, '_elementor_template_type', 'wp-page'),
(2570, 262, '_elementor_version', '3.33.0'),
(2571, 262, '_elementor_pro_version', '3.25.4'),
(2572, 262, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\\n.services_style .services_box_style:hover .elementor-icon{\\n   \\n    top: 64px;\\n   transition: \\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2574, 262, '_elementor_page_settings', 'a:0:{}'),
(2577, 263, '_wp_page_template', 'elementor_header_footer'),
(2578, 263, '_elementor_edit_mode', 'builder'),
(2579, 263, '_elementor_template_type', 'wp-page'),
(2580, 263, '_elementor_version', '3.33.0'),
(2581, 263, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2582, 263, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\\n.services_style .services_box_style:hover .elementor-icon{\\n   \\n    top: 64px;\\n   transition: \\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"39375f0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2658, 272, '_wp_page_template', 'elementor_header_footer'),
(2640, 270, '_wp_page_template', 'elementor_header_footer'),
(2641, 270, '_elementor_edit_mode', 'builder'),
(2642, 270, '_elementor_template_type', 'wp-page'),
(2643, 270, '_elementor_version', '3.33.0'),
(2644, 270, '_elementor_pro_version', '3.25.4'),
(2645, 270, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\\n.services_style .services_box_style:hover .elementor-icon{\\n   \\n    top: 64px;\\n   transition: \\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2675, 273, '_elementor_page_settings', 'a:0:{}'),
(2676, 274, '_wp_page_template', 'elementor_header_footer'),
(2677, 274, '_elementor_edit_mode', 'builder'),
(2678, 274, '_elementor_template_type', 'wp-page'),
(2679, 274, '_elementor_version', '3.33.0'),
(2680, 274, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2681, 274, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\\n.services_style .services_box_style:hover .elementor-icon{\\n   \\n    top: 64px;\\n   transition: \\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2597, 264, '_elementor_page_settings', 'a:0:{}'),
(2600, 265, '_wp_page_template', 'elementor_header_footer'),
(2601, 265, '_elementor_edit_mode', 'builder'),
(2602, 265, '_elementor_template_type', 'wp-page'),
(2603, 265, '_elementor_version', '3.33.0'),
(2604, 265, '_elementor_pro_version', '3.25.4'),
(2605, 265, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\\n.services_style .services_box_style:hover .elementor-icon{\\n   \\n    top: 64px;\\n   transition: \\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"39375f0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2607, 265, '_elementor_page_settings', 'a:0:{}'),
(2610, 266, '_wp_page_template', 'elementor_header_footer'),
(2611, 266, '_elementor_edit_mode', 'builder'),
(2612, 266, '_elementor_template_type', 'wp-page'),
(2613, 266, '_elementor_version', '3.33.0'),
(2614, 266, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2615, 266, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\\n.services_style .services_box_style:hover .elementor-icon{\\n   \\n    top: 64px;\\n   transition: \\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2684, 275, '_wp_page_template', 'elementor_header_footer'),
(2668, 273, '_wp_page_template', 'elementor_header_footer'),
(2669, 273, '_elementor_edit_mode', 'builder'),
(2670, 273, '_elementor_template_type', 'wp-page'),
(2671, 273, '_elementor_version', '3.33.0'),
(2672, 273, '_elementor_pro_version', '3.25.4'),
(2673, 273, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\\n.services_style .services_box_style:hover .elementor-icon{\\n   \\n    top: 64px;\\n   transition: \\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2623, 267, '_wp_attached_file', '2025/11/briefcase_2962083.svg'),
(2624, 267, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3544;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(2662, 272, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2663, 272, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\\n.services_style .services_box_style:hover .elementor-icon{\\n   \\n    top: 64px;\\n   transition: \\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2659, 272, '_elementor_edit_mode', 'builder'),
(2660, 272, '_elementor_template_type', 'wp-page'),
(2661, 272, '_elementor_version', '3.33.0'),
(2637, 269, '_wp_attached_file', '2025/11/daimond_15864800.svg'),
(2638, 269, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:6221;s:5:\"width\";i:150;s:6:\"height\";i:150;}'),
(2647, 270, '_elementor_page_settings', 'a:0:{}'),
(2649, 271, '_wp_page_template', 'elementor_header_footer'),
(2650, 271, '_elementor_edit_mode', 'builder'),
(2651, 271, '_elementor_template_type', 'wp-page'),
(2652, 271, '_elementor_version', '3.33.0'),
(2653, 271, '_elementor_pro_version', '3.25.4'),
(2654, 271, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\\n.services_style .services_box_style:hover .elementor-icon{\\n   \\n    top: 64px;\\n   transition: \\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2656, 271, '_elementor_page_settings', 'a:0:{}'),
(2683, 274, '_elementor_page_settings', 'a:0:{}'),
(2685, 275, '_elementor_edit_mode', 'builder'),
(2686, 275, '_elementor_template_type', 'wp-page'),
(2687, 275, '_elementor_version', '3.33.0'),
(2688, 275, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2689, 275, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\\n.services_style .services_box_style:hover .elementor-icon{\\n   \\n    top: 64px;\\n   transition: \\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2695, 276, '_wp_page_template', 'elementor_header_footer'),
(2696, 276, '_elementor_edit_mode', 'builder'),
(2697, 276, '_elementor_template_type', 'wp-page'),
(2698, 276, '_elementor_version', '3.33.0'),
(2699, 276, '_elementor_pro_version', '3.25.4'),
(2700, 276, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\\n.services_style .services_box_style:hover .elementor-icon{\\n   \\n    top: 64px;\\n   transition: \\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2728, 279, '_wp_page_template', 'elementor_header_footer'),
(2729, 279, '_elementor_edit_mode', 'builder'),
(2730, 279, '_elementor_template_type', 'wp-page'),
(2731, 279, '_elementor_version', '3.33.0'),
(2732, 279, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2733, 279, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2992, 303, '_wp_page_template', 'elementor_header_footer'),
(2993, 303, '_elementor_edit_mode', 'builder'),
(2994, 303, '_elementor_template_type', 'wp-page'),
(2995, 303, '_elementor_version', '3.33.0'),
(2893, 294, '_wp_page_template', 'elementor_header_footer'),
(2894, 294, '_elementor_edit_mode', 'builder'),
(2895, 294, '_elementor_template_type', 'wp-page'),
(2896, 294, '_elementor_version', '3.33.0'),
(2897, 294, '_elementor_pro_version', '3.25.4'),
(2898, 294, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"b185863\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2702, 276, '_elementor_page_settings', 'a:0:{}'),
(2705, 277, '_wp_page_template', 'elementor_header_footer'),
(2706, 277, '_elementor_edit_mode', 'builder'),
(2707, 277, '_elementor_template_type', 'wp-page'),
(2708, 277, '_elementor_version', '3.33.0'),
(2709, 277, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2710, 277, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\".services_style .services_box_style .elementor-icon-box-content{\\n    background: #0A578E;\\n    padding: 35px;\\n    padding-left: 20px;\\n    margin-right: 45px;\\n}\\n\\n.services_style .services_box_style .elementor-icon{\\n    position: absolute;\\n    content: \\\"\\\";\\n    top: 74px;\\n    right: 49px;\\n}\\n.services_style .services_box_style:hover .elementor-icon{\\n   \\n    top: 64px;\\n   transition: \\n}\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2712, 277, '_elementor_page_settings', 'a:0:{}'),
(2715, 278, '_wp_page_template', 'elementor_header_footer'),
(2716, 278, '_elementor_edit_mode', 'builder'),
(2717, 278, '_elementor_template_type', 'wp-page'),
(2718, 278, '_elementor_version', '3.33.0'),
(2719, 278, '_elementor_pro_version', '3.25.4'),
(2720, 278, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2761, 282, '_wp_page_template', 'elementor_header_footer'),
(2762, 282, '_elementor_edit_mode', 'builder'),
(2763, 282, '_elementor_template_type', 'wp-page'),
(2764, 282, '_elementor_version', '3.33.0'),
(2765, 282, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2766, 282, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2735, 279, '_elementor_page_settings', 'a:0:{}'),
(2738, 280, '_wp_page_template', 'elementor_header_footer'),
(2739, 280, '_elementor_edit_mode', 'builder'),
(2740, 280, '_elementor_template_type', 'wp-page'),
(2741, 280, '_elementor_version', '3.33.0'),
(2742, 280, '_elementor_pro_version', '3.25.4'),
(2743, 280, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2745, 280, '_elementor_page_settings', 'a:0:{}'),
(2848, 290, '_elementor_edit_mode', 'builder');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2849, 290, '_elementor_template_type', 'wp-page'),
(2850, 290, '_elementor_version', '3.33.0'),
(2851, 290, '_elementor_pro_version', '3.25.4'),
(2852, 290, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"b185863\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2748, 281, '_wp_page_template', 'elementor_header_footer'),
(2749, 281, '_elementor_edit_mode', 'builder'),
(2750, 281, '_elementor_template_type', 'wp-page'),
(2751, 281, '_elementor_version', '3.33.0'),
(2752, 281, '_elementor_pro_version', '3.25.4'),
(2753, 281, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2814, 287, '_wp_page_template', 'elementor_header_footer'),
(2794, 285, '_wp_page_template', 'elementor_header_footer'),
(2795, 285, '_elementor_edit_mode', 'builder'),
(2796, 285, '_elementor_template_type', 'wp-page'),
(2797, 285, '_elementor_version', '3.33.0'),
(2798, 285, '_elementor_pro_version', '3.25.4'),
(2799, 285, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2768, 282, '_elementor_page_settings', 'a:0:{}'),
(2771, 283, '_wp_page_template', 'elementor_header_footer'),
(2772, 283, '_elementor_edit_mode', 'builder'),
(2773, 283, '_elementor_template_type', 'wp-page'),
(2774, 283, '_elementor_version', '3.33.0'),
(2775, 283, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2776, 283, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2778, 283, '_elementor_page_settings', 'a:0:{}'),
(2847, 290, '_wp_page_template', 'elementor_header_footer'),
(2781, 284, '_wp_page_template', 'elementor_header_footer'),
(2782, 284, '_elementor_edit_mode', 'builder'),
(2783, 284, '_elementor_template_type', 'wp-page'),
(2784, 284, '_elementor_version', '3.33.0'),
(2785, 284, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2786, 284, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2827, 288, '_wp_page_template', 'elementor_header_footer'),
(2828, 288, '_elementor_edit_mode', 'builder'),
(2829, 288, '_elementor_template_type', 'wp-page'),
(2830, 288, '_elementor_version', '3.33.0'),
(2831, 288, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2832, 288, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2801, 285, '_elementor_page_settings', 'a:0:{}'),
(2804, 286, '_wp_page_template', 'elementor_header_footer'),
(2805, 286, '_elementor_edit_mode', 'builder'),
(2806, 286, '_elementor_template_type', 'wp-page'),
(2807, 286, '_elementor_version', '3.33.0'),
(2808, 286, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2809, 286, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2811, 286, '_elementor_page_settings', 'a:0:{}'),
(2815, 287, '_elementor_edit_mode', 'builder'),
(2816, 287, '_elementor_template_type', 'wp-page'),
(2817, 287, '_elementor_version', '3.33.0'),
(2818, 287, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2819, 287, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2860, 291, '_wp_page_template', 'elementor_header_footer'),
(2861, 291, '_elementor_edit_mode', 'builder'),
(2862, 291, '_elementor_template_type', 'wp-page'),
(2863, 291, '_elementor_version', '3.33.0'),
(2864, 291, '_elementor_pro_version', '3.25.4'),
(2865, 291, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"b185863\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2834, 288, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2837, 289, '_wp_page_template', 'elementor_header_footer'),
(2838, 289, '_elementor_edit_mode', 'builder'),
(2839, 289, '_elementor_template_type', 'wp-page'),
(2840, 289, '_elementor_version', '3.33.0'),
(2841, 289, '_elementor_pro_version', '3.25.4'),
(2842, 289, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"543c8bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2844, 289, '_elementor_page_settings', 'a:0:{}'),
(2867, 291, '_elementor_page_settings', 'a:0:{}'),
(2870, 292, '_wp_page_template', 'elementor_header_footer'),
(2871, 292, '_elementor_edit_mode', 'builder'),
(2872, 292, '_elementor_template_type', 'wp-page'),
(2873, 292, '_elementor_version', '3.33.0'),
(2874, 292, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2875, 292, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"b185863\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"This is the heading\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2877, 292, '_elementor_page_settings', 'a:0:{}'),
(2880, 293, '_wp_page_template', 'elementor_header_footer'),
(2881, 293, '_elementor_edit_mode', 'builder'),
(2882, 293, '_elementor_template_type', 'wp-page'),
(2883, 293, '_elementor_version', '3.33.0'),
(2884, 293, '_elementor_pro_version', '3.25.4'),
(2885, 293, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"b185863\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2926, 297, '_wp_page_template', 'elementor_header_footer'),
(2927, 297, '_elementor_edit_mode', 'builder'),
(2928, 297, '_elementor_template_type', 'wp-page'),
(2929, 297, '_elementor_version', '3.33.0'),
(2930, 297, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2931, 297, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"b185863\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2900, 294, '_elementor_page_settings', 'a:0:{}'),
(2903, 295, '_wp_page_template', 'elementor_header_footer'),
(2904, 295, '_elementor_edit_mode', 'builder'),
(2905, 295, '_elementor_template_type', 'wp-page'),
(2906, 295, '_elementor_version', '3.33.0'),
(2907, 295, '_elementor_pro_version', '3.25.4'),
(2908, 295, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"b185863\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2910, 295, '_elementor_page_settings', 'a:0:{}'),
(2913, 296, '_wp_page_template', 'elementor_header_footer'),
(2914, 296, '_elementor_edit_mode', 'builder'),
(2915, 296, '_elementor_template_type', 'wp-page'),
(2916, 296, '_elementor_version', '3.33.0'),
(2917, 296, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2918, 296, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"b185863\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2959, 300, '_wp_page_template', 'elementor_header_footer'),
(2960, 300, '_elementor_edit_mode', 'builder'),
(2961, 300, '_elementor_template_type', 'wp-page'),
(2962, 300, '_elementor_version', '3.33.0'),
(2963, 300, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2964, 300, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b185863\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2933, 297, '_elementor_page_settings', 'a:0:{}'),
(2936, 298, '_wp_page_template', 'elementor_header_footer'),
(2937, 298, '_elementor_edit_mode', 'builder'),
(2938, 298, '_elementor_template_type', 'wp-page'),
(2939, 298, '_elementor_version', '3.33.0'),
(2940, 298, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2941, 298, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"b185863\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2943, 298, '_elementor_page_settings', 'a:0:{}'),
(2946, 299, '_wp_page_template', 'elementor_header_footer'),
(2947, 299, '_elementor_edit_mode', 'builder'),
(2948, 299, '_elementor_template_type', 'wp-page'),
(2949, 299, '_elementor_version', '3.33.0'),
(2950, 299, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2951, 299, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b185863\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3114, 314, '_elementor_version', '3.33.0'),
(3012, 305, '_wp_page_template', 'elementor_header_footer'),
(2996, 303, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2997, 303, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}]},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2966, 300, '_elementor_page_settings', 'a:0:{}'),
(2969, 301, '_wp_page_template', 'elementor_header_footer'),
(2970, 301, '_elementor_edit_mode', 'builder'),
(2971, 301, '_elementor_template_type', 'wp-page'),
(2972, 301, '_elementor_version', '3.33.0'),
(2973, 301, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2974, 301, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"c0a82e8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a31d19\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7ac35cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b185863\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9a895c1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"1d5b614\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"528d7d7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"667c37c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2976, 301, '_elementor_page_settings', 'a:0:{}'),
(3115, 314, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3116, 314, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}]},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2979, 302, '_wp_page_template', 'elementor_header_footer'),
(2980, 302, '_elementor_edit_mode', 'builder'),
(2981, 302, '_elementor_template_type', 'wp-page'),
(2982, 302, '_elementor_version', '3.33.0'),
(2983, 302, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2984, 302, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}]},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3045, 308, '_wp_page_template', 'elementor_header_footer'),
(3025, 306, '_wp_page_template', 'elementor_header_footer'),
(3026, 306, '_elementor_edit_mode', 'builder'),
(3027, 306, '_elementor_template_type', 'wp-page'),
(3028, 306, '_elementor_version', '3.33.0'),
(3029, 306, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3030, 306, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}]},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2999, 303, '_elementor_page_settings', 'a:0:{}'),
(3002, 304, '_wp_page_template', 'elementor_header_footer'),
(3003, 304, '_elementor_edit_mode', 'builder'),
(3004, 304, '_elementor_template_type', 'wp-page'),
(3005, 304, '_elementor_version', '3.33.0'),
(3006, 304, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3007, 304, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}]},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3009, 304, '_elementor_page_settings', 'a:0:{}'),
(3013, 305, '_elementor_edit_mode', 'builder'),
(3014, 305, '_elementor_template_type', 'wp-page'),
(3015, 305, '_elementor_version', '3.33.0'),
(3016, 305, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3017, 305, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}]},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3058, 309, '_wp_page_template', 'elementor_header_footer'),
(3059, 309, '_elementor_edit_mode', 'builder'),
(3060, 309, '_elementor_template_type', 'wp-page'),
(3061, 309, '_elementor_version', '3.33.0'),
(3062, 309, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3063, 309, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}]},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3032, 306, '_elementor_page_settings', 'a:0:{}'),
(3035, 307, '_wp_page_template', 'elementor_header_footer'),
(3036, 307, '_elementor_edit_mode', 'builder'),
(3037, 307, '_elementor_template_type', 'wp-page'),
(3038, 307, '_elementor_version', '3.33.0'),
(3039, 307, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3040, 307, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}]},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3042, 307, '_elementor_page_settings', 'a:0:{}'),
(3046, 308, '_elementor_edit_mode', 'builder'),
(3047, 308, '_elementor_template_type', 'wp-page'),
(3048, 308, '_elementor_version', '3.33.0'),
(3049, 308, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3050, 308, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}]},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3091, 312, '_wp_page_template', 'elementor_header_footer'),
(3092, 312, '_elementor_edit_mode', 'builder'),
(3093, 312, '_elementor_template_type', 'wp-page'),
(3094, 312, '_elementor_version', '3.33.0'),
(3095, 312, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3096, 312, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}]},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3065, 309, '_elementor_page_settings', 'a:0:{}'),
(3068, 310, '_wp_page_template', 'elementor_header_footer'),
(3069, 310, '_elementor_edit_mode', 'builder'),
(3070, 310, '_elementor_template_type', 'wp-page'),
(3071, 310, '_elementor_version', '3.33.0'),
(3072, 310, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3073, 310, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}]},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3075, 310, '_elementor_page_settings', 'a:0:{}'),
(3111, 314, '_wp_page_template', 'elementor_header_footer'),
(3112, 314, '_elementor_edit_mode', 'builder'),
(3113, 314, '_elementor_template_type', 'wp-page'),
(3078, 311, '_wp_page_template', 'elementor_header_footer'),
(3079, 311, '_elementor_edit_mode', 'builder'),
(3080, 311, '_elementor_template_type', 'wp-page'),
(3081, 311, '_elementor_version', '3.33.0'),
(3082, 311, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3083, 311, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}]},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3124, 315, '_wp_page_template', 'elementor_header_footer'),
(3125, 315, '_elementor_edit_mode', 'builder'),
(3126, 315, '_elementor_template_type', 'wp-page'),
(3127, 315, '_elementor_version', '3.33.0'),
(3128, 315, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3129, 315, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}]},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3098, 312, '_elementor_page_settings', 'a:0:{}'),
(3101, 313, '_wp_page_template', 'elementor_header_footer'),
(3102, 313, '_elementor_edit_mode', 'builder'),
(3103, 313, '_elementor_template_type', 'wp-page'),
(3104, 313, '_elementor_version', '3.33.0'),
(3105, 313, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3106, 313, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}],\"custom_css\":\"\\/*.services_style .services_box_style .elementor-icon-box-content{*\\/\\n\\/*    background: #0A578E;*\\/\\n\\/*    padding: 35px;*\\/\\n\\/*    padding-left: 20px;*\\/\\n\\/*    margin-right: 45px;*\\/\\n\\/*}*\\/\\n\\n\\/*.services_style .services_box_style .elementor-icon{*\\/\\n\\/*    position: absolute;*\\/\\n\\/*    content: \\\"\\\";*\\/\\n\\/*    top: 74px;*\\/\\n\\/*    right: 49px;*\\/\\n\\/*}*\\/\\n\\/*.services_style .services_box_style:hover .elementor-icon{*\\/\\n   \\n\\/*    top: 64px;*\\/\\n\\/*}*\\/\"},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}]},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3108, 313, '_elementor_page_settings', 'a:0:{}'),
(3157, 318, '_wp_page_template', 'elementor_header_footer'),
(3158, 318, '_elementor_edit_mode', 'builder'),
(3159, 318, '_elementor_template_type', 'wp-page'),
(3160, 318, '_elementor_version', '3.33.0'),
(3161, 318, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3162, 318, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3131, 315, '_elementor_page_settings', 'a:0:{}'),
(3134, 316, '_wp_page_template', 'elementor_header_footer'),
(3135, 316, '_elementor_edit_mode', 'builder'),
(3136, 316, '_elementor_template_type', 'wp-page'),
(3137, 316, '_elementor_version', '3.33.0'),
(3138, 316, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3139, 316, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}]},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3141, 316, '_elementor_page_settings', 'a:0:{}'),
(3144, 317, '_wp_page_template', 'elementor_header_footer'),
(3145, 317, '_elementor_edit_mode', 'builder'),
(3146, 317, '_elementor_template_type', 'wp-page'),
(3147, 317, '_elementor_version', '3.33.0'),
(3148, 317, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3149, 317, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3190, 321, '_wp_page_template', 'elementor_header_footer'),
(3191, 321, '_elementor_edit_mode', 'builder'),
(3192, 321, '_elementor_template_type', 'wp-page'),
(3193, 321, '_elementor_version', '3.33.0'),
(3194, 321, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3195, 321, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3164, 318, '_elementor_page_settings', 'a:0:{}'),
(3167, 319, '_wp_page_template', 'elementor_header_footer'),
(3168, 319, '_elementor_edit_mode', 'builder'),
(3169, 319, '_elementor_template_type', 'wp-page'),
(3170, 319, '_elementor_version', '3.33.0'),
(3171, 319, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3172, 319, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3174, 319, '_elementor_page_settings', 'a:0:{}'),
(3177, 320, '_wp_page_template', 'elementor_header_footer'),
(3178, 320, '_elementor_edit_mode', 'builder'),
(3179, 320, '_elementor_template_type', 'wp-page'),
(3180, 320, '_elementor_version', '3.33.0'),
(3181, 320, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3182, 320, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3237, 326, '_wp_page_template', 'elementor_header_footer'),
(3221, 324, '_wp_page_template', 'elementor_header_footer'),
(3222, 324, '_elementor_edit_mode', 'builder'),
(3223, 324, '_elementor_template_type', 'wp-page'),
(3224, 324, '_elementor_version', '3.33.0'),
(3225, 324, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3226, 324, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3197, 321, '_elementor_page_settings', 'a:0:{}'),
(3200, 322, '_wp_page_template', 'elementor_header_footer'),
(3201, 322, '_elementor_edit_mode', 'builder'),
(3202, 322, '_elementor_template_type', 'wp-page'),
(3203, 322, '_elementor_version', '3.33.0'),
(3204, 322, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3205, 322, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}]},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"24cd3da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c58b4c6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5840c26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3207, 322, '_elementor_page_settings', 'a:0:{}'),
(3210, 323, '_wp_page_template', 'elementor_header_footer'),
(3211, 323, '_elementor_edit_mode', 'builder'),
(3212, 323, '_elementor_template_type', 'wp-page'),
(3213, 323, '_elementor_version', '3.33.0'),
(3214, 323, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3215, 323, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3228, 324, '_elementor_page_settings', 'a:0:{}'),
(3229, 325, '_wp_page_template', 'elementor_header_footer'),
(3230, 325, '_elementor_edit_mode', 'builder'),
(3231, 325, '_elementor_template_type', 'wp-page'),
(3232, 325, '_elementor_version', '3.33.0'),
(3233, 325, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3234, 325, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3236, 325, '_elementor_page_settings', 'a:0:{}'),
(3238, 326, '_elementor_edit_mode', 'builder'),
(3239, 326, '_elementor_template_type', 'wp-page'),
(3240, 326, '_elementor_version', '3.33.0'),
(3241, 326, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3242, 326, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3246, 327, '_wp_page_template', 'elementor_header_footer'),
(3247, 327, '_elementor_edit_mode', 'builder'),
(3248, 327, '_elementor_template_type', 'wp-page'),
(3249, 327, '_elementor_version', '3.33.0'),
(3250, 327, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3251, 327, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3253, 327, '_elementor_page_settings', 'a:0:{}'),
(3254, 328, '_wp_page_template', 'elementor_header_footer'),
(3255, 328, '_elementor_edit_mode', 'builder'),
(3256, 328, '_elementor_template_type', 'wp-page'),
(3257, 328, '_elementor_version', '3.33.0'),
(3258, 328, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3259, 328, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3261, 328, '_elementor_page_settings', 'a:0:{}'),
(6167, 639, '_wp_page_template', 'elementor_header_footer'),
(6168, 639, '_elementor_edit_mode', 'builder'),
(6169, 639, '_elementor_template_type', 'wp-page'),
(6170, 639, '_elementor_version', '3.33.0'),
(6171, 639, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6172, 639, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise \",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized\\nservice. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6083, 630, '_wp_page_template', 'elementor_header_footer'),
(5969, 618, '_wp_page_template', 'elementor_header_footer'),
(5970, 618, '_elementor_edit_mode', 'builder'),
(5971, 618, '_elementor_template_type', 'wp-page'),
(5972, 618, '_elementor_version', '3.33.0'),
(5973, 618, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5974, 618, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and o\\u01afer convenient cash access.\\nWe handle the installation, maintenance, cash loading, and support.\\nWith zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3262, 329, '_wp_page_template', 'elementor_header_footer'),
(3263, 329, '_elementor_edit_mode', 'builder'),
(3264, 329, '_elementor_template_type', 'wp-page'),
(3265, 329, '_elementor_version', '3.33.0'),
(3266, 329, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3267, 329, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3280, 333, '_wp_page_template', 'elementor_header_footer'),
(3281, 333, '_elementor_edit_mode', 'builder'),
(3282, 333, '_elementor_template_type', 'wp-page'),
(3283, 333, '_elementor_version', '3.33.0'),
(3284, 333, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3285, 333, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3271, 330, '_wp_attached_file', '2025/11/document_15371462.svg'),
(3272, 330, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3272;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(3274, 331, '_wp_attached_file', '2025/11/employment_3526038.svg'),
(3275, 331, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2723;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(3277, 332, '_wp_attached_file', '2025/11/business-problem_9952781.svg'),
(3278, 332, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3080;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(3287, 333, '_elementor_page_settings', 'a:0:{}'),
(3288, 334, '_wp_page_template', 'elementor_header_footer'),
(3289, 334, '_elementor_edit_mode', 'builder'),
(3290, 334, '_elementor_template_type', 'wp-page'),
(3291, 334, '_elementor_version', '3.33.0'),
(3292, 334, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3293, 334, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3295, 334, '_elementor_page_settings', 'a:0:{}'),
(3296, 335, '_wp_page_template', 'elementor_header_footer'),
(3297, 335, '_elementor_edit_mode', 'builder'),
(3298, 335, '_elementor_template_type', 'wp-page'),
(3299, 335, '_elementor_version', '3.33.0'),
(3300, 335, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3301, 335, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3327, 338, '_wp_page_template', 'elementor_header_footer'),
(3307, 336, '_wp_page_template', 'elementor_header_footer'),
(3308, 336, '_elementor_edit_mode', 'builder'),
(3309, 336, '_elementor_template_type', 'wp-page'),
(3310, 336, '_elementor_version', '3.33.0'),
(3311, 336, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3312, 336, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3340, 339, '_wp_page_template', 'elementor_header_footer'),
(3341, 339, '_elementor_edit_mode', 'builder'),
(3342, 339, '_elementor_template_type', 'wp-page'),
(3343, 339, '_elementor_version', '3.33.0'),
(3344, 339, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3345, 339, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3378, 342, '_elementor_page_settings', 'a:0:{}'),
(3379, 343, '_wp_page_template', 'elementor_header_footer'),
(3380, 343, '_elementor_edit_mode', 'builder'),
(3381, 343, '_elementor_template_type', 'wp-page'),
(3382, 343, '_elementor_version', '3.33.0'),
(3383, 343, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3384, 343, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3314, 336, '_elementor_page_settings', 'a:0:{}'),
(3317, 337, '_wp_page_template', 'elementor_header_footer'),
(3318, 337, '_elementor_edit_mode', 'builder'),
(3319, 337, '_elementor_template_type', 'wp-page'),
(3320, 337, '_elementor_version', '3.33.0'),
(3321, 337, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3322, 337, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3324, 337, '_elementor_page_settings', 'a:0:{}'),
(3328, 338, '_elementor_edit_mode', 'builder'),
(3329, 338, '_elementor_template_type', 'wp-page'),
(3330, 338, '_elementor_version', '3.33.0'),
(3331, 338, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3332, 338, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3371, 342, '_wp_page_template', 'elementor_header_footer'),
(3372, 342, '_elementor_edit_mode', 'builder'),
(3373, 342, '_elementor_template_type', 'wp-page'),
(3374, 342, '_elementor_version', '3.33.0'),
(3375, 342, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3376, 342, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3347, 339, '_elementor_page_settings', 'a:0:{}'),
(3350, 340, '_wp_page_template', 'elementor_header_footer'),
(3351, 340, '_elementor_edit_mode', 'builder'),
(3352, 340, '_elementor_template_type', 'wp-page'),
(3353, 340, '_elementor_version', '3.33.0'),
(3354, 340, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3355, 340, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3357, 340, '_elementor_page_settings', 'a:0:{}'),
(3360, 341, '_wp_page_template', 'elementor_header_footer'),
(3361, 341, '_elementor_edit_mode', 'builder'),
(3362, 341, '_elementor_template_type', 'wp-page'),
(3363, 341, '_elementor_version', '3.33.0'),
(3364, 341, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3365, 341, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3386, 343, '_elementor_page_settings', 'a:0:{}'),
(3387, 344, '_wp_page_template', 'elementor_header_footer'),
(3388, 344, '_elementor_edit_mode', 'builder'),
(3389, 344, '_elementor_template_type', 'wp-page'),
(3390, 344, '_elementor_version', '3.33.0'),
(3391, 344, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3392, 344, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(3398, 345, '_wp_page_template', 'elementor_header_footer'),
(3399, 345, '_elementor_edit_mode', 'builder'),
(3400, 345, '_elementor_template_type', 'wp-page'),
(3401, 345, '_elementor_version', '3.33.0'),
(3402, 345, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3403, 345, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(3431, 348, '_wp_page_template', 'elementor_header_footer'),
(3432, 348, '_elementor_edit_mode', 'builder'),
(3433, 348, '_elementor_template_type', 'wp-page'),
(3434, 348, '_elementor_version', '3.33.0'),
(3435, 348, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3436, 348, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}]},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location?  Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3561, 360, '_wp_page_template', 'elementor_header_footer'),
(3562, 360, '_elementor_edit_mode', 'builder'),
(3563, 360, '_elementor_template_type', 'wp-page'),
(3564, 360, '_elementor_version', '3.33.0'),
(3565, 360, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3566, 360, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3405, 345, '_elementor_page_settings', 'a:0:{}'),
(3408, 346, '_wp_page_template', 'elementor_header_footer'),
(3409, 346, '_elementor_edit_mode', 'builder'),
(3410, 346, '_elementor_template_type', 'wp-page'),
(3411, 346, '_elementor_version', '3.33.0'),
(3412, 346, '_elementor_pro_version', '3.25.4'),
(3413, 346, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(3415, 346, '_elementor_page_settings', 'a:0:{}'),
(3418, 347, '_wp_page_template', 'elementor_header_footer'),
(3419, 347, '_elementor_edit_mode', 'builder'),
(3420, 347, '_elementor_template_type', 'wp-page'),
(3421, 347, '_elementor_version', '3.33.0'),
(3422, 347, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3423, 347, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}]},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location?  Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3464, 351, '_wp_page_template', 'elementor_header_footer'),
(3465, 351, '_elementor_edit_mode', 'builder'),
(3466, 351, '_elementor_template_type', 'wp-page'),
(3467, 351, '_elementor_version', '3.33.0'),
(3468, 351, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3469, 351, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}]},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location?  Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3568, 360, '_elementor_page_settings', 'a:0:{}'),
(3569, 361, '_wp_page_template', 'elementor_header_footer'),
(3570, 361, '_elementor_edit_mode', 'builder'),
(3571, 361, '_elementor_template_type', 'wp-page'),
(3438, 348, '_elementor_page_settings', 'a:0:{}'),
(3441, 349, '_wp_page_template', 'elementor_header_footer'),
(3442, 349, '_elementor_edit_mode', 'builder'),
(3443, 349, '_elementor_template_type', 'wp-page'),
(3444, 349, '_elementor_version', '3.33.0'),
(3445, 349, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3446, 349, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}]},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location?  Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3448, 349, '_elementor_page_settings', 'a:0:{}'),
(3451, 350, '_wp_page_template', 'elementor_header_footer'),
(3452, 350, '_elementor_edit_mode', 'builder'),
(3453, 350, '_elementor_template_type', 'wp-page'),
(3454, 350, '_elementor_version', '3.33.0'),
(3455, 350, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3456, 350, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}]},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location?  Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(5558, 571, '_elementor_pro_version', '3.25.4'),
(3497, 354, '_wp_page_template', 'elementor_header_footer'),
(3498, 354, '_elementor_edit_mode', 'builder'),
(3499, 354, '_elementor_template_type', 'wp-page'),
(3500, 354, '_elementor_version', '3.33.0'),
(3501, 354, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3502, 354, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}]},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location?  Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3471, 351, '_elementor_page_settings', 'a:0:{}'),
(3474, 352, '_wp_page_template', 'elementor_header_footer'),
(3475, 352, '_elementor_edit_mode', 'builder'),
(3476, 352, '_elementor_template_type', 'wp-page'),
(3477, 352, '_elementor_version', '3.33.0'),
(3478, 352, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3479, 352, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}]},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location?  Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3481, 352, '_elementor_page_settings', 'a:0:{}'),
(5915, 612, '_wp_page_template', 'elementor_header_footer'),
(5916, 612, '_elementor_edit_mode', 'builder'),
(5917, 612, '_elementor_template_type', 'wp-page'),
(5918, 612, '_elementor_version', '3.33.0'),
(5919, 612, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5920, 612, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5559, 571, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3484, 353, '_wp_page_template', 'elementor_header_footer'),
(3485, 353, '_elementor_edit_mode', 'builder'),
(3486, 353, '_elementor_template_type', 'wp-page'),
(3487, 353, '_elementor_version', '3.33.0'),
(3488, 353, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3489, 353, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}]},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location?  Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(5554, 571, '_wp_page_template', 'elementor_header_footer'),
(3530, 357, '_wp_page_template', 'elementor_header_footer'),
(3531, 357, '_elementor_edit_mode', 'builder'),
(3532, 357, '_elementor_template_type', 'wp-page'),
(3533, 357, '_elementor_version', '3.33.0'),
(3534, 357, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3535, 357, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}]},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location?  Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3572, 361, '_elementor_version', '3.33.0'),
(3573, 361, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3574, 361, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3504, 354, '_elementor_page_settings', 'a:0:{}'),
(3507, 355, '_wp_page_template', 'elementor_header_footer'),
(3508, 355, '_elementor_edit_mode', 'builder'),
(3509, 355, '_elementor_template_type', 'wp-page'),
(3510, 355, '_elementor_version', '3.33.0'),
(3511, 355, '_elementor_pro_version', '3.25.4'),
(3512, 355, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}]},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location?  Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3514, 355, '_elementor_page_settings', 'a:0:{}'),
(5555, 571, '_elementor_edit_mode', 'builder'),
(5556, 571, '_elementor_template_type', 'wp-page'),
(5557, 571, '_elementor_version', '3.33.0'),
(3517, 356, '_wp_page_template', 'elementor_header_footer'),
(3518, 356, '_elementor_edit_mode', 'builder'),
(3519, 356, '_elementor_template_type', 'wp-page'),
(3520, 356, '_elementor_version', '3.33.0'),
(3521, 356, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3522, 356, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}]},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location?  Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3577, 362, '_wp_page_template', 'elementor_header_footer'),
(3537, 357, '_elementor_page_settings', 'a:0:{}'),
(3540, 358, '_wp_page_template', 'elementor_header_footer'),
(3541, 358, '_elementor_edit_mode', 'builder'),
(3542, 358, '_elementor_template_type', 'wp-page'),
(3543, 358, '_elementor_version', '3.33.0'),
(3544, 358, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3545, 358, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}]},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location?  Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(3547, 358, '_elementor_page_settings', 'a:0:{}'),
(3550, 359, '_wp_page_template', 'elementor_header_footer'),
(3551, 359, '_elementor_edit_mode', 'builder'),
(3552, 359, '_elementor_template_type', 'wp-page'),
(3553, 359, '_elementor_version', '3.33.0'),
(3554, 359, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3555, 359, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3576, 361, '_elementor_page_settings', 'a:0:{}'),
(3578, 362, '_elementor_edit_mode', 'builder'),
(3579, 362, '_elementor_template_type', 'wp-page'),
(3580, 362, '_elementor_version', '3.33.0'),
(3581, 362, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3582, 362, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3588, 363, '_wp_page_template', 'elementor_header_footer'),
(3589, 363, '_elementor_edit_mode', 'builder'),
(3590, 363, '_elementor_template_type', 'wp-page'),
(3591, 363, '_elementor_version', '3.33.0'),
(3592, 363, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3593, 363, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3869, 390, '_wp_page_template', 'elementor_header_footer'),
(3870, 390, '_elementor_edit_mode', 'builder'),
(3871, 390, '_elementor_template_type', 'wp-page'),
(3872, 390, '_elementor_version', '3.33.0'),
(3621, 366, '_wp_page_template', 'elementor_header_footer'),
(3622, 366, '_elementor_edit_mode', 'builder'),
(3623, 366, '_elementor_template_type', 'wp-page'),
(3624, 366, '_elementor_version', '3.33.0'),
(3625, 366, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3626, 366, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3996, 402, '_wp_page_template', 'elementor_header_footer'),
(3997, 402, '_elementor_edit_mode', 'builder'),
(3998, 402, '_elementor_template_type', 'wp-page'),
(3999, 402, '_elementor_version', '3.33.0'),
(4000, 402, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4001, 402, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4003, 402, '_elementor_page_settings', 'a:0:{}'),
(4004, 403, '_wp_page_template', 'elementor_header_footer'),
(4005, 403, '_elementor_edit_mode', 'builder'),
(4006, 403, '_elementor_template_type', 'wp-page'),
(4007, 403, '_elementor_version', '3.33.0'),
(4008, 403, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4009, 403, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3595, 363, '_elementor_page_settings', 'a:0:{}'),
(3598, 364, '_wp_page_template', 'elementor_header_footer'),
(3599, 364, '_elementor_edit_mode', 'builder'),
(3600, 364, '_elementor_template_type', 'wp-page'),
(3601, 364, '_elementor_version', '3.33.0'),
(3602, 364, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3603, 364, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3605, 364, '_elementor_page_settings', 'a:0:{}'),
(3608, 365, '_wp_page_template', 'elementor_header_footer'),
(3609, 365, '_elementor_edit_mode', 'builder'),
(3610, 365, '_elementor_template_type', 'wp-page'),
(3611, 365, '_elementor_version', '3.33.0'),
(3612, 365, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3613, 365, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3672, 372, '_wp_page_template', 'elementor_header_footer'),
(3673, 372, '_elementor_edit_mode', 'builder'),
(3674, 372, '_elementor_template_type', 'wp-page'),
(3675, 372, '_elementor_version', '3.33.0'),
(3676, 372, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3677, 372, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3873, 390, '_elementor_pro_version', '3.25.4'),
(3628, 366, '_elementor_page_settings', 'a:0:{}'),
(3631, 367, '_wp_page_template', 'elementor_header_footer'),
(3632, 367, '_elementor_edit_mode', 'builder'),
(3633, 367, '_elementor_template_type', 'wp-page'),
(3634, 367, '_elementor_version', '3.33.0'),
(3635, 367, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3636, 367, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}]},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3638, 367, '_elementor_page_settings', 'a:0:{}'),
(3641, 368, '_wp_page_template', 'elementor_header_footer'),
(3642, 368, '_elementor_edit_mode', 'builder'),
(3643, 368, '_elementor_template_type', 'wp-page'),
(3644, 368, '_elementor_version', '3.33.0'),
(3645, 368, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3646, 368, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3828, 386, '_wp_page_template', 'elementor_header_footer'),
(3829, 386, '_elementor_edit_mode', 'builder'),
(3830, 386, '_elementor_template_type', 'wp-page'),
(3831, 386, '_elementor_version', '3.33.0'),
(3832, 386, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3833, 386, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3654, 369, '_elementor_edit_mode', 'builder'),
(3655, 369, '_elementor_template_type', 'footer'),
(3656, 370, '_elementor_edit_mode', 'builder'),
(3657, 370, '_elementor_template_type', 'footer'),
(3658, 369, '_elementor_version', '3.33.0'),
(3659, 369, '_elementor_pro_version', '3.25.4'),
(3663, 369, '_astra_content_layout_flag', 'disabled'),
(3665, 369, 'ast-title-bar-display', 'disabled'),
(3666, 369, 'ast-featured-img', 'disabled'),
(3667, 369, 'ast-site-content-layout', 'full-width-container'),
(3668, 369, 'site-sidebar-layout', 'no-sidebar'),
(3706, 369, '_elementor_data', '[{\"id\":\"5a753bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#042A46\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c374e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"aec388d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa4f733\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0a14c61\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9372a75\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"baf9146\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"37d9fe3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eab0b4c\"}],\"pp_display_conditions\":[{\"_id\":\"ee022c6\"}]},\"elements\":[{\"id\":\"c661f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Link\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1dff565\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ac5ef\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"51f0097\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services Snapshot\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/services-snapshot\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1bedd45\"},{\"text\":\"Why Choose Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eba2a8c\"},{\"text\":\"How It Works\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/how-it-works\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"751d3db\"},{\"text\":\"FAQs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/faqs\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"14a7a2e\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7771776\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90c63b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"c892fd9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8312d34\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d81cab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4854862\"}],\"pp_display_conditions\":[{\"_id\":\"6b11cbf\"}]},\"elements\":[{\"id\":\"73381aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1dff565\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b602097\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call us (818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"51f0097\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto;admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1bedd45\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90c63b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"38d1023\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d3857b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9f668ce\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31d9f4f\"}],\"pp_display_conditions\":[{\"_id\":\"fd37a4a\"}]},\"elements\":[{\"id\":\"62c3f98\",\"elType\":\"widget\",\"settings\":{\"address\":\"Los Angeles\",\"height\":{\"unit\":\"px\",\"size\":227,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"561908e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"zoom\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0c04719\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#042A46E0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b13e827\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4a1ebbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f312801\"}],\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"db18f4c\"}]},\"elements\":[{\"id\":\"70d6c57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a92025 - All Rights Reserved.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f4ae993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(3670, 369, '_edit_lock', '1764068986:1'),
(3679, 372, '_elementor_page_settings', 'a:0:{}'),
(3682, 373, '_wp_page_template', 'elementor_header_footer'),
(3683, 373, '_elementor_edit_mode', 'builder'),
(3684, 373, '_elementor_template_type', 'wp-page'),
(3685, 373, '_elementor_version', '3.33.0'),
(3686, 373, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3687, 373, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3689, 373, '_elementor_page_settings', 'a:0:{}'),
(3692, 374, '_wp_page_template', 'elementor_header_footer'),
(3693, 374, '_elementor_edit_mode', 'builder'),
(3694, 374, '_elementor_template_type', 'wp-page'),
(3695, 374, '_elementor_version', '3.33.0'),
(3696, 374, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3697, 374, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3953, 398, '_elementor_edit_mode', 'builder');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3874, 390, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3705, 369, '_wp_page_template', 'default'),
(3707, 375, '_elementor_edit_mode', 'builder'),
(3708, 375, '_elementor_template_type', 'footer'),
(3709, 375, '_elementor_version', '3.33.0'),
(3710, 375, '_elementor_pro_version', '3.25.4'),
(3711, 375, '_wp_page_template', 'default'),
(3712, 375, '_elementor_data', '[{\"id\":\"5a753bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#042A46\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c374e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"aec388d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa4f733\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0a14c61\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9372a75\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"baf9146\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"37d9fe3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eab0b4c\"}],\"pp_display_conditions\":[{\"_id\":\"ee022c6\"}]},\"elements\":[{\"id\":\"c661f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Link\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1dff565\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ac5ef\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"51f0097\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services Snapshot\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/services-snapshot\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1bedd45\"},{\"text\":\"Why Choose Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eba2a8c\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7771776\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90c63b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"c892fd9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8312d34\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d81cab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4854862\"}],\"pp_display_conditions\":[{\"_id\":\"6b11cbf\"}]},\"elements\":[{\"id\":\"73381aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1dff565\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b602097\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call us (818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"51f0097\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto;admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1bedd45\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90c63b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"38d1023\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d3857b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9f668ce\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31d9f4f\"}],\"pp_display_conditions\":[{\"_id\":\"fd37a4a\"}]},\"elements\":[{\"id\":\"62c3f98\",\"elType\":\"widget\",\"settings\":{\"address\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"height\":{\"unit\":\"px\",\"size\":227,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"561908e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0c04719\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#042A46E0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b13e827\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4a1ebbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f312801\"}],\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"db18f4c\"}]},\"elements\":[{\"id\":\"70d6c57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a92025 - All Rights Reserved.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f4ae993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(5210, 532, '_elementor_edit_mode', 'builder'),
(3719, 376, '_elementor_edit_mode', 'builder'),
(3720, 376, '_elementor_template_type', 'footer'),
(3721, 376, '_elementor_version', '3.33.0'),
(3722, 376, '_elementor_pro_version', '3.25.4'),
(3723, 376, '_wp_page_template', 'default'),
(3724, 376, '_elementor_data', '[{\"id\":\"5a753bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#042A46\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c374e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"aec388d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa4f733\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0a14c61\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9372a75\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"baf9146\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"37d9fe3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eab0b4c\"}],\"pp_display_conditions\":[{\"_id\":\"ee022c6\"}]},\"elements\":[{\"id\":\"c661f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Link\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1dff565\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ac5ef\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"51f0097\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services Snapshot\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/services-snapshot\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1bedd45\"},{\"text\":\"Why Choose Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eba2a8c\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7771776\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90c63b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"c892fd9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8312d34\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d81cab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4854862\"}],\"pp_display_conditions\":[{\"_id\":\"6b11cbf\"}]},\"elements\":[{\"id\":\"73381aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1dff565\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b602097\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call us (818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"51f0097\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto;admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1bedd45\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90c63b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"38d1023\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d3857b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9f668ce\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31d9f4f\"}],\"pp_display_conditions\":[{\"_id\":\"fd37a4a\"}]},\"elements\":[{\"id\":\"62c3f98\",\"elType\":\"widget\",\"settings\":{\"address\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"height\":{\"unit\":\"px\",\"size\":227,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"561908e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0c04719\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#042A46E0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b13e827\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4a1ebbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f312801\"}],\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"db18f4c\"}]},\"elements\":[{\"id\":\"70d6c57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a92025 - All Rights Reserved.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f4ae993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(3716, 369, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5211, 532, '_elementor_template_type', 'footer'),
(5212, 532, '_elementor_version', '3.33.0'),
(5213, 532, '_elementor_pro_version', '3.25.4'),
(5214, 532, '_wp_page_template', 'default'),
(5215, 532, '_elementor_data', '[{\"id\":\"5a753bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#042A46\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c374e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"aec388d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa4f733\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0a14c61\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9372a75\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"baf9146\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"37d9fe3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eab0b4c\"}],\"pp_display_conditions\":[{\"_id\":\"ee022c6\"}]},\"elements\":[{\"id\":\"c661f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Link\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1dff565\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ac5ef\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"51f0097\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services Snapshot\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/services-snapshot\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1bedd45\"},{\"text\":\"Why Choose Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eba2a8c\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7771776\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90c63b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"c892fd9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8312d34\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d81cab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4854862\"}],\"pp_display_conditions\":[{\"_id\":\"6b11cbf\"}]},\"elements\":[{\"id\":\"73381aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1dff565\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b602097\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call us (818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"51f0097\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto;admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1bedd45\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90c63b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"38d1023\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d3857b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9f668ce\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31d9f4f\"}],\"pp_display_conditions\":[{\"_id\":\"fd37a4a\"}]},\"elements\":[{\"id\":\"62c3f98\",\"elType\":\"widget\",\"settings\":{\"address\":\"Greater Los Angeles\",\"height\":{\"unit\":\"px\",\"size\":227,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"561908e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0c04719\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#042A46E0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b13e827\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4a1ebbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f312801\"}],\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"db18f4c\"}]},\"elements\":[{\"id\":\"70d6c57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a92025 - All Rights Reserved.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f4ae993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(5229, 533, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5233, 534, '_elementor_template_type', 'footer'),
(5234, 534, '_elementor_version', '3.33.0'),
(5235, 534, '_elementor_pro_version', '3.25.4'),
(5236, 534, '_wp_page_template', 'default'),
(5237, 534, '_elementor_data', '[{\"id\":\"5a753bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#042A46\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c374e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"aec388d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa4f733\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0a14c61\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9372a75\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"baf9146\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"37d9fe3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eab0b4c\"}],\"pp_display_conditions\":[{\"_id\":\"ee022c6\"}]},\"elements\":[{\"id\":\"c661f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Link\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1dff565\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ac5ef\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"51f0097\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services Snapshot\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/services-snapshot\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1bedd45\"},{\"text\":\"Why Choose Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eba2a8c\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7771776\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90c63b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"c892fd9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8312d34\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d81cab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4854862\"}],\"pp_display_conditions\":[{\"_id\":\"6b11cbf\"}]},\"elements\":[{\"id\":\"73381aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1dff565\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b602097\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call us (818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"51f0097\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto;admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1bedd45\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90c63b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"38d1023\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d3857b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9f668ce\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31d9f4f\"}],\"pp_display_conditions\":[{\"_id\":\"fd37a4a\"}]},\"elements\":[{\"id\":\"62c3f98\",\"elType\":\"widget\",\"settings\":{\"address\":\"Greater Los Angeles\",\"height\":{\"unit\":\"px\",\"size\":227,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"561908e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0c04719\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#042A46E0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b13e827\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4a1ebbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f312801\"}],\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"db18f4c\"}]},\"elements\":[{\"id\":\"70d6c57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a92025 - All Rights Reserved.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f4ae993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(3726, 376, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5232, 534, '_elementor_edit_mode', 'builder'),
(5222, 533, '_elementor_edit_mode', 'builder'),
(5223, 533, '_elementor_template_type', 'footer'),
(5224, 533, '_elementor_version', '3.33.0'),
(5225, 533, '_elementor_pro_version', '3.25.4'),
(5226, 533, '_wp_page_template', 'default'),
(5227, 533, '_elementor_data', '[{\"id\":\"5a753bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#042A46\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c374e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"aec388d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa4f733\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0a14c61\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9372a75\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"baf9146\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"37d9fe3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eab0b4c\"}],\"pp_display_conditions\":[{\"_id\":\"ee022c6\"}]},\"elements\":[{\"id\":\"c661f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Link\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1dff565\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ac5ef\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"51f0097\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services Snapshot\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/services-snapshot\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1bedd45\"},{\"text\":\"Why Choose Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eba2a8c\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7771776\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90c63b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"c892fd9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8312d34\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d81cab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4854862\"}],\"pp_display_conditions\":[{\"_id\":\"6b11cbf\"}]},\"elements\":[{\"id\":\"73381aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1dff565\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b602097\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call us (818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"51f0097\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto;admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1bedd45\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90c63b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"38d1023\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d3857b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9f668ce\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31d9f4f\"}],\"pp_display_conditions\":[{\"_id\":\"fd37a4a\"}]},\"elements\":[{\"id\":\"62c3f98\",\"elType\":\"widget\",\"settings\":{\"address\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"height\":{\"unit\":\"px\",\"size\":227,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"561908e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0c04719\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#042A46E0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b13e827\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4a1ebbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f312801\"}],\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"db18f4c\"}]},\"elements\":[{\"id\":\"70d6c57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a92025 - All Rights Reserved.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f4ae993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(3740, 377, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3743, 377, '_elementor_screenshot', 'a:2:{s:2:\"id\";i:371;s:3:\"url\";s:141:\"https://mrarif.me/secureswipesolutions/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_44_2025-11-16-07-45-48_7c83264c.png\";}'),
(3744, 377, '_elementor_screenshot_failed', '2025-11-16 07:46:16'),
(3763, 379, '_elementor_edit_mode', 'builder'),
(3764, 379, '_elementor_template_type', 'header'),
(3765, 379, '_elementor_version', '3.33.0'),
(3766, 379, '_elementor_pro_version', '3.25.4'),
(3767, 379, '_wp_page_template', 'default'),
(3768, 379, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"10\",\"bottom\":\"9\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"\"},\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#4E4F5240\"},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"150758c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3756, 378, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3775, 380, '_elementor_edit_mode', 'builder'),
(3776, 380, '_elementor_template_type', 'header'),
(3777, 380, '_elementor_version', '3.33.0'),
(3778, 380, '_elementor_pro_version', '3.25.4'),
(3779, 380, '_wp_page_template', 'default');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3780, 380, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"10\",\"bottom\":\"9\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"\"},\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#4E4F5240\"},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"150758c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2c9345c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf57bb8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"449fc1a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c2eeee7\"}],\"background_overlay_background\":\"classic\",\"pp_display_conditions\":[{\"_id\":\"55afdba\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"5ba0a7c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7cfe67\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"25ff9b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"78d11dd\"}],\"pp_display_conditions\":[{\"_id\":\"9c1b3d8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"195ce54\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ccb607c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(3770, 379, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3782, 380, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3785, 381, '_elementor_edit_mode', 'builder'),
(3786, 381, '_elementor_template_type', 'header'),
(3787, 381, '_elementor_version', '3.33.0'),
(3788, 381, '_elementor_pro_version', '3.25.4'),
(3789, 381, '_wp_page_template', 'default'),
(3790, 381, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"10\",\"bottom\":\"9\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"\"},\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#4E4F5240\"},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"150758c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2c9345c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf57bb8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"449fc1a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c2eeee7\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"55afdba\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"5ba0a7c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7cfe67\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"25ff9b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"78d11dd\"}],\"pp_display_conditions\":[{\"_id\":\"9c1b3d8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"195ce54\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ccb607c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(3792, 381, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3797, 382, '_elementor_edit_mode', 'builder'),
(3798, 382, '_elementor_template_type', 'header'),
(3799, 382, '_elementor_version', '3.33.0'),
(3800, 382, '_elementor_pro_version', '3.25.4'),
(3801, 382, '_wp_page_template', 'default'),
(3802, 382, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"10\",\"bottom\":\"9\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"\"},\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#4E4F5221\"},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"150758c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2c9345c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf57bb8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"449fc1a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c2eeee7\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"55afdba\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"5ba0a7c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7cfe67\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"25ff9b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"78d11dd\"}],\"pp_display_conditions\":[{\"_id\":\"9c1b3d8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"195ce54\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ccb607c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(5857, 604, '_elementor_edit_mode', 'builder'),
(4700, 483, '_elementor_edit_mode', 'builder'),
(4701, 483, '_elementor_template_type', 'header'),
(4702, 483, '_elementor_version', '3.33.0'),
(4703, 483, '_elementor_pro_version', '3.25.4'),
(4704, 483, '_wp_page_template', 'default'),
(4705, 483, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"link_click\":\"inline\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"link_click\":\"inline\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"10\",\"bottom\":\"9\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"\"},\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#4E4F5221\"},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"150758c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2c9345c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf57bb8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"449fc1a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c2eeee7\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"55afdba\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"5ba0a7c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7cfe67\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"25ff9b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"78d11dd\"}],\"pp_display_conditions\":[{\"_id\":\"9c1b3d8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"195ce54\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ccb607c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(3804, 382, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4714, 484, '_elementor_edit_mode', 'builder'),
(4715, 484, '_elementor_template_type', 'header'),
(4716, 484, '_elementor_version', '3.33.0'),
(4717, 484, '_elementor_pro_version', '3.25.4'),
(4718, 484, '_wp_page_template', 'default');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4719, 484, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"link_click\":\"inline\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"link_click\":\"inline\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7c981cc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"12\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"\"},\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#4E4F5221\"},\"elements\":[{\"id\":\"524c364\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"2700bee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4b2f564\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"e9e6ae1\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"150758c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2c9345c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf57bb8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"449fc1a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c2eeee7\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"55afdba\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"5ba0a7c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7cfe67\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"25ff9b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"78d11dd\"}],\"pp_display_conditions\":[{\"_id\":\"9c1b3d8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"195ce54\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ccb607c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(3954, 398, '_elementor_template_type', 'wp-page'),
(3955, 398, '_elementor_version', '3.33.0'),
(3956, 398, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3957, 398, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3846, 388, '_wp_page_template', 'elementor_header_footer'),
(3847, 388, '_elementor_edit_mode', 'builder'),
(3848, 388, '_elementor_template_type', 'wp-page'),
(3849, 388, '_elementor_version', '3.33.0'),
(3850, 388, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3851, 388, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3822, 384, '_wp_attached_file', '2025/11/checkmark_3722012.svg'),
(3823, 384, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:594;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(3825, 385, '_wp_attached_file', '2025/11/badge_16596723.svg'),
(3826, 385, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1172;s:5:\"width\";i:24;s:6:\"height\";i:24;}'),
(3835, 386, '_elementor_page_settings', 'a:0:{}'),
(3837, 387, '_wp_page_template', 'elementor_header_footer'),
(3838, 387, '_elementor_edit_mode', 'builder'),
(3839, 387, '_elementor_template_type', 'wp-page'),
(3840, 387, '_elementor_version', '3.33.0'),
(3841, 387, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3842, 387, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}]},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}]},\"elements\":[{\"id\":\"e2bfbf1\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"4e5942e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}]},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3844, 387, '_elementor_page_settings', 'a:0:{}'),
(3899, 393, '_wp_page_template', 'elementor_header_footer'),
(3900, 393, '_elementor_edit_mode', 'builder'),
(3901, 393, '_elementor_template_type', 'wp-page'),
(3902, 393, '_elementor_version', '3.33.0'),
(3903, 393, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3904, 393, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3891, 392, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3892, 392, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3887, 392, '_wp_page_template', 'elementor_header_footer'),
(3888, 392, '_elementor_edit_mode', 'builder'),
(3889, 392, '_elementor_template_type', 'wp-page'),
(3890, 392, '_elementor_version', '3.33.0'),
(3876, 390, '_elementor_page_settings', 'a:0:{}'),
(3878, 391, '_wp_page_template', 'elementor_header_footer'),
(3879, 391, '_elementor_edit_mode', 'builder'),
(3880, 391, '_elementor_template_type', 'wp-page'),
(3881, 391, '_elementor_version', '3.33.0'),
(3882, 391, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3883, 391, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3885, 391, '_elementor_page_settings', 'a:0:{}'),
(3932, 396, '_wp_page_template', 'elementor_header_footer'),
(3933, 396, '_elementor_edit_mode', 'builder'),
(3934, 396, '_elementor_template_type', 'wp-page'),
(3935, 396, '_elementor_version', '3.33.0'),
(3936, 396, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3937, 396, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3906, 393, '_elementor_page_settings', 'a:0:{}'),
(3909, 394, '_wp_page_template', 'elementor_header_footer'),
(3910, 394, '_elementor_edit_mode', 'builder'),
(3911, 394, '_elementor_template_type', 'wp-page'),
(3912, 394, '_elementor_version', '3.33.0'),
(3913, 394, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3914, 394, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3916, 394, '_elementor_page_settings', 'a:0:{}'),
(3952, 398, '_wp_page_template', 'elementor_header_footer'),
(3919, 395, '_wp_page_template', 'elementor_header_footer'),
(3920, 395, '_elementor_edit_mode', 'builder'),
(3921, 395, '_elementor_template_type', 'wp-page'),
(3922, 395, '_elementor_version', '3.33.0'),
(3923, 395, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3924, 395, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3965, 399, '_wp_page_template', 'elementor_header_footer'),
(3966, 399, '_elementor_edit_mode', 'builder'),
(3967, 399, '_elementor_template_type', 'wp-page'),
(3968, 399, '_elementor_version', '3.33.0'),
(3969, 399, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3970, 399, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3939, 396, '_elementor_page_settings', 'a:0:{}'),
(3942, 397, '_wp_page_template', 'elementor_header_footer'),
(3943, 397, '_elementor_edit_mode', 'builder'),
(3944, 397, '_elementor_template_type', 'wp-page'),
(3945, 397, '_elementor_version', '3.33.0'),
(3946, 397, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3947, 397, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"46c84a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4653c01\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"29bd8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5b0495\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"a76e029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39f9d8b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3949, 397, '_elementor_page_settings', 'a:0:{}'),
(3972, 399, '_elementor_page_settings', 'a:0:{}'),
(3975, 400, '_wp_page_template', 'elementor_header_footer'),
(3976, 400, '_elementor_edit_mode', 'builder'),
(3977, 400, '_elementor_template_type', 'wp-page'),
(3978, 400, '_elementor_version', '3.33.0'),
(3979, 400, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3980, 400, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3982, 400, '_elementor_page_settings', 'a:0:{}'),
(3985, 401, '_wp_page_template', 'elementor_header_footer'),
(3986, 401, '_elementor_edit_mode', 'builder'),
(3987, 401, '_elementor_template_type', 'wp-page'),
(3988, 401, '_elementor_version', '3.33.0'),
(3989, 401, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3990, 401, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4011, 403, '_elementor_page_settings', 'a:0:{}'),
(4012, 404, '_wp_page_template', 'elementor_header_footer'),
(4013, 404, '_elementor_edit_mode', 'builder'),
(4014, 404, '_elementor_template_type', 'wp-page'),
(4015, 404, '_elementor_version', '3.33.0'),
(4016, 404, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4017, 404, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4043, 407, '_wp_page_template', 'elementor_header_footer'),
(4023, 405, '_wp_page_template', 'elementor_header_footer'),
(4024, 405, '_elementor_edit_mode', 'builder'),
(4025, 405, '_elementor_template_type', 'wp-page'),
(4026, 405, '_elementor_version', '3.33.0'),
(4027, 405, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4028, 405, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4085, 411, '_wp_page_template', 'elementor_header_footer'),
(4067, 409, '_wp_page_template', 'elementor_header_footer'),
(4068, 409, '_elementor_edit_mode', 'builder'),
(4069, 409, '_elementor_template_type', 'wp-page'),
(4070, 409, '_elementor_version', '3.33.0'),
(4071, 409, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4072, 409, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5111, 523, '_wp_page_template', 'elementor_header_footer'),
(5112, 523, '_elementor_edit_mode', 'builder'),
(5113, 523, '_elementor_template_type', 'wp-page'),
(5114, 523, '_elementor_version', '3.33.0'),
(5115, 523, '_elementor_pro_version', '3.25.4'),
(5116, 523, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5436, 555, '_elementor_page_settings', 'a:0:{}'),
(5437, 556, '_wp_page_template', 'elementor_header_footer'),
(5438, 556, '_elementor_edit_mode', 'builder'),
(5439, 556, '_elementor_template_type', 'wp-page'),
(5440, 556, '_elementor_version', '3.33.0'),
(5441, 556, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5442, 556, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4030, 405, '_elementor_page_settings', 'a:0:{}'),
(4033, 406, '_wp_page_template', 'elementor_header_footer'),
(4034, 406, '_elementor_edit_mode', 'builder'),
(4035, 406, '_elementor_template_type', 'wp-page'),
(4036, 406, '_elementor_version', '3.33.0'),
(4037, 406, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4038, 406, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4040, 406, '_elementor_page_settings', 'a:0:{}'),
(4044, 407, '_elementor_edit_mode', 'builder'),
(4045, 407, '_elementor_template_type', 'wp-page'),
(4046, 407, '_elementor_version', '3.33.0'),
(4047, 407, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4048, 407, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4097, 412, '_wp_page_template', 'elementor_header_footer'),
(4098, 412, '_elementor_edit_mode', 'builder'),
(4099, 412, '_elementor_template_type', 'wp-page'),
(4100, 412, '_elementor_version', '3.33.0'),
(4101, 412, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4102, 412, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4090, 411, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4086, 411, '_elementor_edit_mode', 'builder'),
(4087, 411, '_elementor_template_type', 'wp-page'),
(4088, 411, '_elementor_version', '3.33.0'),
(4089, 411, '_elementor_pro_version', '3.25.4'),
(4074, 409, '_elementor_page_settings', 'a:0:{}'),
(4076, 410, '_wp_page_template', 'elementor_header_footer'),
(4077, 410, '_elementor_edit_mode', 'builder'),
(4078, 410, '_elementor_template_type', 'wp-page'),
(4079, 410, '_elementor_version', '3.33.0'),
(4080, 410, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4081, 410, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4083, 410, '_elementor_page_settings', 'a:0:{}'),
(4313, 437, '_wp_page_template', 'elementor_header_footer'),
(4314, 437, '_elementor_edit_mode', 'builder'),
(4315, 437, '_elementor_template_type', 'wp-page'),
(4316, 437, '_elementor_version', '3.33.0'),
(4317, 437, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4318, 437, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4104, 412, '_elementor_page_settings', 'a:0:{}'),
(4107, 413, '_wp_page_template', 'elementor_header_footer'),
(4108, 413, '_elementor_edit_mode', 'builder'),
(4109, 413, '_elementor_template_type', 'wp-page'),
(4110, 413, '_elementor_version', '3.33.0'),
(4111, 413, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4112, 413, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4114, 413, '_elementor_page_settings', 'a:0:{}'),
(4117, 414, '_wp_page_template', 'elementor_header_footer'),
(4118, 414, '_elementor_edit_mode', 'builder'),
(4119, 414, '_elementor_template_type', 'wp-page'),
(4120, 414, '_elementor_version', '3.33.0'),
(4121, 414, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4122, 414, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4348, 441, '_wp_page_template', 'elementor_header_footer'),
(4349, 441, '_elementor_edit_mode', 'builder'),
(4350, 441, '_elementor_template_type', 'wp-page'),
(4351, 441, '_elementor_version', '3.33.0'),
(4352, 441, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4353, 441, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4130, 29, '_elementor_edit_mode', 'builder'),
(4131, 29, '_astra_content_layout_flag', 'disabled'),
(4132, 29, 'ast-title-bar-display', 'disabled'),
(4133, 29, '_elementor_template_type', 'wp-page'),
(4134, 29, '_elementor_version', '3.33.0'),
(4135, 29, '_elementor_pro_version', '3.25.4'),
(4137, 415, '_wp_page_template', 'elementor_header_footer'),
(4139, 415, '_elementor_edit_mode', 'builder'),
(4140, 415, '_elementor_template_type', 'wp-page'),
(4141, 415, '_elementor_version', '3.33.0'),
(4142, 415, '_elementor_pro_version', '3.25.4'),
(4143, 415, '_elementor_page_settings', 'a:0:{}'),
(4144, 416, '_wp_page_template', 'elementor_header_footer'),
(4146, 416, '_elementor_edit_mode', 'builder'),
(4147, 416, '_elementor_template_type', 'wp-page'),
(4148, 416, '_elementor_version', '3.33.0'),
(4149, 416, '_elementor_pro_version', '3.25.4'),
(4150, 416, '_elementor_page_settings', 'a:0:{}'),
(5587, 574, '_wp_page_template', 'elementor_header_footer'),
(5589, 574, '_elementor_edit_mode', 'builder'),
(5590, 574, '_elementor_template_type', 'wp-page'),
(5591, 574, '_elementor_version', '3.33.0'),
(5592, 574, '_elementor_pro_version', '3.25.4'),
(5593, 574, '_elementor_data', '[{\"id\":\"433f982\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}]},\"elements\":[{\"id\":\"1d8f162\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"96eaf19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb60ea8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df33c90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0dd6823\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"138f1d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21987f6\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact page Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4152, 417, '_wp_page_template', 'elementor_header_footer'),
(4154, 417, '_elementor_edit_mode', 'builder'),
(4155, 417, '_elementor_template_type', 'wp-page'),
(4156, 417, '_elementor_version', '3.33.0'),
(4157, 417, '_elementor_pro_version', '3.25.4'),
(4158, 417, '_elementor_data', '[{\"id\":\"433f982\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}]},\"elements\":[{\"id\":\"1d8f162\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"96eaf19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb60ea8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df33c90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0dd6823\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"848cb4a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"138f1d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21987f6\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact page Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4781, 490, '_wp_page_template', 'elementor_header_footer'),
(4761, 488, '_wp_page_template', 'elementor_header_footer'),
(4763, 488, '_elementor_edit_mode', 'builder'),
(4764, 488, '_elementor_template_type', 'wp-page'),
(4765, 488, '_elementor_version', '3.33.0'),
(4766, 488, '_elementor_pro_version', '3.25.4'),
(4767, 488, '_elementor_data', '[{\"id\":\"433f982\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}]},\"elements\":[{\"id\":\"1d8f162\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"96eaf19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb60ea8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df33c90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0dd6823\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"848cb4a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"138f1d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21987f6\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact page Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4808, 493, '_wp_page_template', 'elementor_header_footer'),
(4792, 491, '_wp_page_template', 'elementor_header_footer'),
(4794, 491, '_elementor_edit_mode', 'builder'),
(4795, 491, '_elementor_template_type', 'wp-page'),
(4796, 491, '_elementor_version', '3.33.0'),
(4797, 491, '_elementor_pro_version', '3.25.4'),
(4798, 491, '_elementor_data', '[{\"id\":\"433f982\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}]},\"elements\":[{\"id\":\"1d8f162\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"96eaf19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb60ea8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df33c90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0dd6823\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"848cb4a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"138f1d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21987f6\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact page Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4799, 491, '_elementor_page_settings', 'a:0:{}'),
(4800, 492, '_wp_page_template', 'elementor_header_footer'),
(4802, 492, '_elementor_edit_mode', 'builder'),
(4803, 492, '_elementor_template_type', 'wp-page'),
(4804, 492, '_elementor_version', '3.33.0'),
(4805, 492, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4806, 492, '_elementor_data', '[{\"id\":\"433f982\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}]},\"elements\":[{\"id\":\"1d8f162\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"96eaf19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb60ea8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df33c90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0dd6823\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"848cb4a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"138f1d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21987f6\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact page Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4163, 27, '_elementor_edit_mode', 'builder'),
(4164, 27, '_astra_content_layout_flag', 'disabled'),
(4165, 27, 'ast-title-bar-display', 'disabled'),
(4166, 27, '_elementor_template_type', 'wp-page'),
(4167, 27, '_elementor_version', '3.33.0'),
(4168, 27, '_elementor_pro_version', '3.25.4'),
(4178, 419, '_wp_attached_file', '2025/11/choose.jpg'),
(4179, 419, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:18:\"2025/11/choose.jpg\";s:8:\"filesize\";i:73851;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"choose-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13769;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"choose-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6810;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"choose-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59220;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4180, 420, '_wp_page_template', 'elementor_header_footer'),
(4182, 420, '_elementor_edit_mode', 'builder'),
(4183, 420, '_elementor_template_type', 'wp-page'),
(4184, 420, '_elementor_version', '3.33.0'),
(4185, 420, '_elementor_pro_version', '3.25.4'),
(4186, 420, '_elementor_page_settings', 'a:0:{}'),
(4187, 421, '_wp_page_template', 'elementor_header_footer'),
(4189, 421, '_elementor_edit_mode', 'builder'),
(4190, 421, '_elementor_template_type', 'wp-page'),
(4191, 421, '_elementor_version', '3.33.0'),
(4192, 421, '_elementor_pro_version', '3.25.4'),
(4193, 421, '_elementor_page_settings', 'a:0:{}'),
(4195, 422, '_wp_page_template', 'elementor_header_footer'),
(4197, 422, '_elementor_edit_mode', 'builder'),
(4198, 422, '_elementor_template_type', 'wp-page'),
(4199, 422, '_elementor_version', '3.33.0'),
(4200, 422, '_elementor_pro_version', '3.25.4'),
(4201, 422, '_elementor_data', '[{\"id\":\"e7cdc50\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"93a2939\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eeb8e1f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2452a0b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2161e3d\"}]},\"elements\":[{\"id\":\"a6967d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b7c393\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bafde60\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79871db\"}],\"pp_display_conditions\":[{\"_id\":\"c249100\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3e6727b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/choose.jpg\",\"id\":419,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"1efafb6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"081ab36\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"90dfaab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80a00a3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"144bbc0\"}],\"pp_display_conditions\":[{\"_id\":\"e2d192e\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca802c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ed2a46\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"89b3b17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.<\\/p><p>When you partner with us, you\\u2019re not just getting a machine. You\\u2019re gaining a responsive, service-driven team that values your growth.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4632, 476, '_wp_page_template', 'elementor_header_footer'),
(4634, 476, '_elementor_edit_mode', 'builder'),
(4635, 476, '_elementor_template_type', 'wp-page'),
(4636, 476, '_elementor_version', '3.33.0'),
(4637, 476, '_elementor_pro_version', '3.25.4'),
(4638, 476, '_elementor_data', '[{\"id\":\"e7cdc50\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"93a2939\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eeb8e1f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2452a0b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2161e3d\"}]},\"elements\":[{\"id\":\"a6967d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b7c393\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bafde60\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79871db\"}],\"pp_display_conditions\":[{\"_id\":\"c249100\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3e6727b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/choose.jpg\",\"id\":419,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"1efafb6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"081ab36\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"90dfaab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80a00a3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"144bbc0\"}],\"pp_display_conditions\":[{\"_id\":\"e2d192e\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca802c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ed2a46\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"89b3b17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.<\\/p><p>When you partner with us, you\\u2019re not just getting a machine. You\\u2019re gaining a responsive, service-driven team that values your growth.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4204, 25, '_elementor_edit_mode', 'builder'),
(4205, 25, '_astra_content_layout_flag', 'disabled'),
(4206, 25, 'ast-title-bar-display', 'disabled'),
(4207, 25, '_elementor_template_type', 'wp-page'),
(4208, 25, '_elementor_version', '3.33.0'),
(4209, 25, '_elementor_pro_version', '3.25.4'),
(4211, 423, '_wp_attached_file', '2025/11/New-Project-27.jpg'),
(4212, 423, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:26:\"2025/11/New-Project-27.jpg\";s:8:\"filesize\";i:27777;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"New-Project-27-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6915;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"New-Project-27-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4054;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"New-Project-27-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24508;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4213, 424, '_wp_page_template', 'elementor_header_footer'),
(4215, 424, '_elementor_edit_mode', 'builder'),
(4216, 424, '_elementor_template_type', 'wp-page'),
(4217, 424, '_elementor_version', '3.33.0'),
(4218, 424, '_elementor_pro_version', '3.25.4'),
(4219, 424, '_elementor_page_settings', 'a:0:{}'),
(4220, 425, '_wp_page_template', 'elementor_header_footer'),
(4222, 425, '_elementor_edit_mode', 'builder'),
(4223, 425, '_elementor_template_type', 'wp-page'),
(4224, 425, '_elementor_version', '3.33.0'),
(4225, 425, '_elementor_pro_version', '3.25.4'),
(4226, 425, '_elementor_page_settings', 'a:0:{}'),
(4228, 426, '_wp_page_template', 'elementor_header_footer'),
(4230, 426, '_elementor_edit_mode', 'builder'),
(4231, 426, '_elementor_template_type', 'wp-page'),
(4232, 426, '_elementor_version', '3.33.0'),
(4233, 426, '_elementor_pro_version', '3.25.4'),
(4234, 426, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4250, 428, '_wp_page_template', 'elementor_header_footer'),
(4252, 428, '_elementor_edit_mode', 'builder'),
(4253, 428, '_elementor_template_type', 'wp-page'),
(4254, 428, '_elementor_version', '3.33.0'),
(4255, 428, '_elementor_pro_version', '3.25.4'),
(4256, 428, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4300, 436, '_wp_page_template', 'elementor_header_footer'),
(4284, 434, '_wp_page_template', 'elementor_header_footer'),
(4286, 434, '_elementor_edit_mode', 'builder'),
(4287, 434, '_elementor_template_type', 'wp-page'),
(4288, 434, '_elementor_version', '3.33.0'),
(4289, 434, '_elementor_pro_version', '3.25.4'),
(4290, 434, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4278, 431, '_wp_attached_file', '2025/11/New-Project-28.jpg'),
(4279, 431, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:26:\"2025/11/New-Project-28.jpg\";s:8:\"filesize\";i:56253;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"New-Project-28-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12238;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"New-Project-28-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6386;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"New-Project-28-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47722;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4257, 428, '_elementor_page_settings', 'a:0:{}'),
(4259, 429, '_wp_page_template', 'elementor_header_footer'),
(4261, 429, '_elementor_edit_mode', 'builder'),
(4262, 429, '_elementor_template_type', 'wp-page'),
(4263, 429, '_elementor_version', '3.33.0'),
(4264, 429, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4265, 429, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4266, 429, '_elementor_page_settings', 'a:0:{}'),
(4268, 430, '_wp_page_template', 'elementor_header_footer'),
(4270, 430, '_elementor_edit_mode', 'builder'),
(4271, 430, '_elementor_template_type', 'wp-page'),
(4272, 430, '_elementor_version', '3.33.0'),
(4273, 430, '_elementor_pro_version', '3.25.4'),
(4274, 430, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4280, 432, '_wp_attached_file', '2025/11/New-Project-29.jpg'),
(4281, 432, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:26:\"2025/11/New-Project-29.jpg\";s:8:\"filesize\";i:58543;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"New-Project-29-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12269;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"New-Project-29-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6086;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"New-Project-29-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47986;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4282, 433, '_wp_attached_file', '2025/11/New-Project-30.jpg'),
(4283, 433, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:26:\"2025/11/New-Project-30.jpg\";s:8:\"filesize\";i:68249;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"New-Project-30-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15242;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"New-Project-30-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7859;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"New-Project-30-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58857;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4291, 434, '_elementor_page_settings', 'a:0:{}'),
(4292, 435, '_wp_page_template', 'elementor_header_footer'),
(4294, 435, '_elementor_edit_mode', 'builder'),
(4295, 435, '_elementor_template_type', 'wp-page'),
(4296, 435, '_elementor_version', '3.33.0'),
(4297, 435, '_elementor_pro_version', '3.25.4'),
(4298, 435, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4299, 435, '_elementor_page_settings', 'a:0:{}'),
(4302, 436, '_elementor_edit_mode', 'builder'),
(4303, 436, '_elementor_template_type', 'wp-page'),
(4304, 436, '_elementor_version', '3.33.0'),
(4305, 436, '_elementor_pro_version', '3.25.4'),
(4306, 436, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-28.jpg\",\"id\":431,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-30.jpg\",\"id\":433,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4440, 452, '_wp_page_template', 'elementor_header_footer'),
(4420, 450, '_wp_page_template', 'elementor_header_footer'),
(4422, 450, '_elementor_edit_mode', 'builder'),
(4423, 450, '_elementor_template_type', 'wp-page'),
(4424, 450, '_elementor_version', '3.33.0'),
(4425, 450, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4426, 450, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-28.jpg\",\"id\":431,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-30.jpg\",\"id\":433,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4453, 453, '_wp_page_template', 'elementor_header_footer'),
(4455, 453, '_elementor_edit_mode', 'builder'),
(4456, 453, '_elementor_template_type', 'wp-page'),
(4457, 453, '_elementor_version', '3.33.0'),
(4458, 453, '_elementor_pro_version', '3.25.4'),
(4459, 453, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5197, 531, '_wp_page_template', 'elementor_header_footer'),
(5177, 529, '_wp_page_template', 'elementor_header_footer'),
(5179, 529, '_elementor_edit_mode', 'builder'),
(5180, 529, '_elementor_template_type', 'wp-page'),
(5181, 529, '_elementor_version', '3.33.0'),
(5182, 529, '_elementor_pro_version', '3.25.4'),
(5183, 529, '_elementor_data', '[{\"id\":\"e7cdc50\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"93a2939\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eeb8e1f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2452a0b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2161e3d\"}]},\"elements\":[{\"id\":\"a6967d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b7c393\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bafde60\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79871db\"}],\"pp_display_conditions\":[{\"_id\":\"c249100\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3e6727b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"1efafb6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"081ab36\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"90dfaab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80a00a3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"144bbc0\"}],\"pp_display_conditions\":[{\"_id\":\"e2d192e\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca802c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ed2a46\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"89b3b17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.<\\/p><p>When you partner with us, you\\u2019re not just getting a machine. You\\u2019re gaining a responsive, service-driven team that values your growth.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8086, 842, '_elementor_page_settings', 'a:0:{}'),
(4320, 437, '_elementor_page_settings', 'a:0:{}'),
(4323, 438, '_wp_page_template', 'elementor_header_footer'),
(4324, 438, '_elementor_edit_mode', 'builder'),
(4325, 438, '_elementor_template_type', 'wp-page'),
(4326, 438, '_elementor_version', '3.33.0'),
(4327, 438, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4328, 438, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e35c73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/3222-1.jpg\",\"id\":99,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"e5922cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5f8c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"divider_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"91893c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Verdana\",\"typography_font_size\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbecf80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"917c4f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4330, 438, '_elementor_page_settings', 'a:0:{}'),
(4333, 439, '_wp_page_template', 'elementor_header_footer'),
(4334, 439, '_elementor_edit_mode', 'builder'),
(4335, 439, '_elementor_template_type', 'wp-page'),
(4336, 439, '_elementor_version', '3.33.0'),
(4337, 439, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4338, 439, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4403, 447, '_wp_page_template', 'elementor_header_footer'),
(4383, 445, '_wp_page_template', 'elementor_header_footer'),
(4384, 445, '_elementor_edit_mode', 'builder'),
(4385, 445, '_elementor_template_type', 'wp-page'),
(4386, 445, '_elementor_version', '3.33.0'),
(4387, 445, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4388, 445, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4918, 503, '_wp_page_template', 'elementor_header_footer'),
(4346, 440, '_wp_attached_file', '2025/11/banner-4.mp4'),
(4347, 440, '_wp_attachment_metadata', 'a:10:{s:7:\"bitrate\";i:793388;s:8:\"filesize\";i:2575956;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:26;s:16:\"length_formatted\";s:4:\"0:26\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:17:\"created_timestamp\";i:1763381467;}'),
(4355, 441, '_elementor_page_settings', 'a:0:{}'),
(4358, 442, '_wp_page_template', 'elementor_header_footer'),
(4359, 442, '_elementor_edit_mode', 'builder'),
(4360, 442, '_elementor_template_type', 'wp-page'),
(4361, 442, '_elementor_version', '3.33.0'),
(4362, 442, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4363, 442, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4365, 442, '_elementor_page_settings', 'a:0:{}'),
(4368, 443, '_wp_page_template', 'elementor_header_footer'),
(4369, 443, '_elementor_edit_mode', 'builder'),
(4370, 443, '_elementor_template_type', 'wp-page'),
(4371, 443, '_elementor_version', '3.33.0'),
(4372, 443, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4373, 443, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4506, 459, '_wp_page_template', 'elementor_header_footer'),
(4486, 457, '_wp_page_template', 'elementor_header_footer'),
(4487, 457, '_elementor_edit_mode', 'builder'),
(4488, 457, '_elementor_template_type', 'wp-page'),
(4489, 457, '_elementor_version', '3.33.0'),
(4490, 457, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4491, 457, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4817, 494, '_wp_page_template', 'elementor_header_footer'),
(4381, 444, '_wp_attached_file', '2025/11/14392996-2-1.jpg'),
(4382, 444, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2025/11/14392996-2-1.jpg\";s:8:\"filesize\";i:106617;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"14392996-2-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13775;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"14392996-2-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83873;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"14392996-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6325;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"14392996-2-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54332;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4390, 445, '_elementor_page_settings', 'a:0:{}'),
(4393, 446, '_wp_page_template', 'elementor_header_footer'),
(4394, 446, '_elementor_edit_mode', 'builder'),
(4395, 446, '_elementor_template_type', 'wp-page'),
(4396, 446, '_elementor_version', '3.33.0'),
(4397, 446, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4398, 446, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-6.jpg\",\"id\":36,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4400, 446, '_elementor_page_settings', 'a:0:{}'),
(4404, 447, '_elementor_edit_mode', 'builder'),
(4405, 447, '_elementor_template_type', 'wp-page'),
(4406, 447, '_elementor_version', '3.33.0'),
(4407, 447, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4408, 447, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4728, 485, '_wp_page_template', 'elementor_header_footer'),
(4729, 485, '_elementor_edit_mode', 'builder'),
(4730, 485, '_elementor_template_type', 'wp-page'),
(4731, 485, '_elementor_version', '3.33.0'),
(4732, 485, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4733, 485, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4416, 448, '_wp_attached_file', '2025/11/69644-1.jpg'),
(4417, 448, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2025/11/69644-1.jpg\";s:8:\"filesize\";i:70081;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"69644-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15256;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"69644-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7423;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"69644-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67113;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4418, 449, '_wp_attached_file', '2025/11/11665759-1.jpg'),
(4419, 449, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:22:\"2025/11/11665759-1.jpg\";s:8:\"filesize\";i:71248;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"11665759-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16009;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"11665759-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8101;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"11665759-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65334;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4427, 450, '_elementor_page_settings', 'a:0:{}'),
(4430, 451, '_wp_page_template', 'elementor_header_footer'),
(4432, 451, '_elementor_edit_mode', 'builder'),
(4433, 451, '_elementor_template_type', 'wp-page'),
(4434, 451, '_elementor_version', '3.33.0'),
(4435, 451, '_elementor_pro_version', '3.25.4'),
(4436, 451, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-28.jpg\",\"id\":431,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-30.jpg\",\"id\":433,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4437, 451, '_elementor_page_settings', 'a:0:{}'),
(4442, 452, '_elementor_edit_mode', 'builder'),
(4443, 452, '_elementor_template_type', 'wp-page'),
(4444, 452, '_elementor_version', '3.33.0'),
(4445, 452, '_elementor_pro_version', '3.25.4'),
(4446, 452, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4538, 464, '_wp_page_template', 'elementor_header_footer'),
(4540, 464, '_elementor_edit_mode', 'builder'),
(4541, 464, '_elementor_template_type', 'wp-page'),
(4542, 464, '_elementor_version', '3.33.0'),
(4543, 464, '_elementor_pro_version', '3.25.4'),
(4544, 464, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4484, 456, '_wp_trash_meta_status', 'publish'),
(4485, 456, '_wp_trash_meta_time', '1763383024'),
(4460, 453, '_elementor_page_settings', 'a:0:{}'),
(4463, 454, '_wp_page_template', 'elementor_header_footer'),
(4465, 454, '_elementor_edit_mode', 'builder'),
(4466, 454, '_elementor_template_type', 'wp-page'),
(4467, 454, '_elementor_version', '3.33.0'),
(4468, 454, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4469, 454, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4470, 454, '_elementor_page_settings', 'a:0:{}'),
(4473, 455, '_wp_page_template', 'elementor_header_footer'),
(4475, 455, '_elementor_edit_mode', 'builder'),
(4476, 455, '_elementor_template_type', 'wp-page'),
(4477, 455, '_elementor_version', '3.33.0'),
(4478, 455, '_elementor_pro_version', '3.25.4'),
(4479, 455, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4493, 457, '_elementor_page_settings', 'a:0:{}'),
(4496, 458, '_wp_page_template', 'elementor_header_footer'),
(4497, 458, '_elementor_edit_mode', 'builder'),
(4498, 458, '_elementor_template_type', 'wp-page'),
(4499, 458, '_elementor_version', '3.33.0'),
(4500, 458, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4501, 458, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4503, 458, '_elementor_page_settings', 'a:0:{}'),
(4507, 459, '_elementor_edit_mode', 'builder'),
(4508, 459, '_elementor_template_type', 'wp-page'),
(4509, 459, '_elementor_version', '3.33.0'),
(4510, 459, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4511, 459, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4818, 494, '_elementor_edit_mode', 'builder'),
(4819, 494, '_elementor_template_type', 'wp-page'),
(4820, 494, '_elementor_version', '3.33.0'),
(4821, 494, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4822, 494, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4519, 460, '_wp_trash_meta_status', 'publish'),
(4520, 460, '_wp_trash_meta_time', '1763383062'),
(4572, 469, '_wp_page_template', 'elementor_header_footer'),
(4574, 469, '_elementor_edit_mode', 'builder'),
(4575, 469, '_elementor_template_type', 'wp-page'),
(4576, 469, '_elementor_version', '3.33.0'),
(4577, 469, '_elementor_pro_version', '3.25.4'),
(4578, 469, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}]},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"80af703\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"5f8b6bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4534, 462, '_wp_attached_file', '2025/11/gratis-png-visa-thumbnail.png'),
(4535, 462, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:370;s:6:\"height\";i:151;s:4:\"file\";s:37:\"2025/11/gratis-png-visa-thumbnail.png\";s:8:\"filesize\";i:4792;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"gratis-png-visa-thumbnail-300x122.png\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5275;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"gratis-png-visa-thumbnail-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3427;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4536, 463, '_wp_attached_file', '2025/11/images.png'),
(4537, 463, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:299;s:6:\"height\";i:168;s:4:\"file\";s:18:\"2025/11/images.png\";s:8:\"filesize\";i:2927;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"images-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3289;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4556, 466, '_wp_page_template', 'elementor_header_footer'),
(4558, 466, '_elementor_edit_mode', 'builder'),
(4559, 466, '_elementor_template_type', 'wp-page'),
(4560, 466, '_elementor_version', '3.33.0'),
(4561, 466, '_elementor_pro_version', '3.25.4'),
(4562, 466, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}]},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"80af703\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"5f8b6bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4545, 464, '_elementor_page_settings', 'a:0:{}'),
(4547, 465, '_wp_page_template', 'elementor_header_footer'),
(4549, 465, '_elementor_edit_mode', 'builder'),
(4550, 465, '_elementor_template_type', 'wp-page'),
(4551, 465, '_elementor_version', '3.33.0'),
(4552, 465, '_elementor_pro_version', '3.25.4'),
(4553, 465, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4554, 465, '_elementor_page_settings', 'a:0:{}'),
(4605, 473, '_wp_page_template', 'elementor_header_footer'),
(4607, 473, '_elementor_edit_mode', 'builder'),
(4608, 473, '_elementor_template_type', 'wp-page'),
(4609, 473, '_elementor_version', '3.33.0'),
(4610, 473, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4611, 473, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}]},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4603, 472, '_wp_attached_file', '2025/11/620670b9d7b91b0004122617-1694098704.png'),
(4604, 472, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1418;s:6:\"height\";i:499;s:4:\"file\";s:47:\"2025/11/620670b9d7b91b0004122617-1694098704.png\";s:8:\"filesize\";i:17330;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"620670b9d7b91b0004122617-1694098704-300x106.png\";s:5:\"width\";i:300;s:6:\"height\";i:106;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4212;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"620670b9d7b91b0004122617-1694098704-1024x360.png\";s:5:\"width\";i:1024;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15548;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"620670b9d7b91b0004122617-1694098704-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2754;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"620670b9d7b91b0004122617-1694098704-768x270.png\";s:5:\"width\";i:768;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11288;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4568, 467, '_wp_attached_file', '2025/11/MicrosoftTeams-image-1.png'),
(4569, 467, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:103;s:6:\"height\";i:45;s:4:\"file\";s:34:\"2025/11/MicrosoftTeams-image-1.png\";s:8:\"filesize\";i:1414;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4570, 468, '_wp_attached_file', '2025/11/download-2.png'),
(4571, 468, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:219;s:6:\"height\";i:180;s:4:\"file\";s:22:\"2025/11/download-2.png\";s:8:\"filesize\";i:2391;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"download-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3387;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4579, 469, '_elementor_page_settings', 'a:0:{}'),
(4582, 470, '_wp_page_template', 'elementor_header_footer'),
(4584, 470, '_elementor_edit_mode', 'builder'),
(4585, 470, '_elementor_template_type', 'wp-page'),
(4586, 470, '_elementor_version', '3.33.0'),
(4587, 470, '_elementor_pro_version', '3.25.4'),
(4588, 470, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}]},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"80af703\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"5f8b6bb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4589, 470, '_elementor_page_settings', 'a:0:{}'),
(4592, 471, '_wp_page_template', 'elementor_header_footer'),
(4594, 471, '_elementor_edit_mode', 'builder'),
(4595, 471, '_elementor_template_type', 'wp-page'),
(4596, 471, '_elementor_version', '3.33.0'),
(4597, 471, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4598, 471, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}]},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4612, 473, '_elementor_page_settings', 'a:0:{}'),
(4613, 474, '_wp_page_template', 'elementor_header_footer'),
(4615, 474, '_elementor_edit_mode', 'builder'),
(4616, 474, '_elementor_template_type', 'wp-page'),
(4617, 474, '_elementor_version', '3.33.0'),
(4618, 474, '_elementor_pro_version', '3.25.4'),
(4619, 474, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}]},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4620, 474, '_elementor_page_settings', 'a:0:{}'),
(4621, 475, '_wp_page_template', 'elementor_header_footer'),
(4623, 475, '_elementor_edit_mode', 'builder'),
(4624, 475, '_elementor_template_type', 'wp-page'),
(4625, 475, '_elementor_version', '3.33.0'),
(4626, 475, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4627, 475, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}]},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4667, 480, '_wp_page_template', 'elementor_header_footer'),
(4669, 480, '_elementor_edit_mode', 'builder'),
(4670, 480, '_elementor_template_type', 'wp-page'),
(4671, 480, '_elementor_version', '3.33.0'),
(4672, 480, '_elementor_pro_version', '3.25.4'),
(4673, 480, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}]},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5477, 563, '_wp_page_template', 'elementor_header_footer'),
(5479, 563, '_elementor_edit_mode', 'builder'),
(5480, 563, '_elementor_template_type', 'wp-page'),
(5481, 563, '_elementor_version', '3.33.0'),
(5482, 563, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5483, 563, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}]},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5505, 566, '_wp_page_template', 'elementor_header_footer'),
(5507, 566, '_elementor_edit_mode', 'builder'),
(5508, 566, '_elementor_template_type', 'wp-page'),
(5509, 566, '_elementor_version', '3.33.0'),
(5510, 566, '_elementor_pro_version', '3.25.4'),
(5511, 566, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}]},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4639, 476, '_elementor_page_settings', 'a:0:{}'),
(4642, 477, '_wp_page_template', 'elementor_header_footer'),
(4644, 477, '_elementor_edit_mode', 'builder'),
(4645, 477, '_elementor_template_type', 'wp-page'),
(4646, 477, '_elementor_version', '3.33.0'),
(4647, 477, '_elementor_pro_version', '3.25.4'),
(4648, 477, '_elementor_data', '[{\"id\":\"e7cdc50\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"93a2939\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eeb8e1f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2452a0b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2161e3d\"}]},\"elements\":[{\"id\":\"a6967d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b7c393\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bafde60\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79871db\"}],\"pp_display_conditions\":[{\"_id\":\"c249100\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3e6727b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/choose.jpg\",\"id\":419,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"1efafb6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"081ab36\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"90dfaab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80a00a3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"144bbc0\"}],\"pp_display_conditions\":[{\"_id\":\"e2d192e\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca802c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ed2a46\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"89b3b17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.<\\/p><p>When you partner with us, you\\u2019re not just getting a machine. You\\u2019re gaining a responsive, service-driven team that values your growth.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4649, 477, '_elementor_page_settings', 'a:0:{}'),
(4652, 478, '_wp_page_template', 'elementor_header_footer'),
(4654, 478, '_elementor_edit_mode', 'builder'),
(4655, 478, '_elementor_template_type', 'wp-page'),
(4656, 478, '_elementor_version', '3.33.0'),
(4657, 478, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4658, 478, '_elementor_data', '[{\"id\":\"e7cdc50\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"93a2939\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eeb8e1f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2452a0b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2161e3d\"}]},\"elements\":[{\"id\":\"a6967d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b7c393\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bafde60\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79871db\"}],\"pp_display_conditions\":[{\"_id\":\"c249100\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3e6727b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"1efafb6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"081ab36\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"90dfaab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80a00a3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"144bbc0\"}],\"pp_display_conditions\":[{\"_id\":\"e2d192e\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca802c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ed2a46\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"89b3b17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.<\\/p><p>When you partner with us, you\\u2019re not just getting a machine. You\\u2019re gaining a responsive, service-driven team that values your growth.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7089, 736, '_wp_page_template', 'elementor_header_footer'),
(7091, 736, '_elementor_edit_mode', 'builder'),
(7092, 736, '_elementor_template_type', 'wp-page'),
(7093, 736, '_elementor_version', '3.33.0'),
(7094, 736, '_elementor_pro_version', '3.25.4'),
(7095, 736, '_elementor_data', '[{\"id\":\"e7cdc50\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"93a2939\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eeb8e1f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2452a0b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2161e3d\"}]},\"elements\":[{\"id\":\"a6967d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b7c393\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bafde60\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79871db\"}],\"pp_display_conditions\":[{\"_id\":\"c249100\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3e6727b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"1efafb6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"081ab36\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"90dfaab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80a00a3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"144bbc0\"}],\"pp_display_conditions\":[{\"_id\":\"e2d192e\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca802c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ed2a46\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"89b3b17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.<\\/p><p>When you partner with us, you\\u2019re not just getting a machine. You\\u2019re gaining a responsive, service-driven team that values your growth.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4665, 479, '_wp_attached_file', '2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg'),
(4666, 479, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:678;s:4:\"file\";s:50:\"2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\";s:8:\"filesize\";i:147960;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14820;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"WhatsApp-Image-2025-11-17-at-19.02.48-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6616;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:521;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58994;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4674, 480, '_elementor_page_settings', 'a:0:{}'),
(4677, 481, '_wp_page_template', 'elementor_header_footer'),
(4679, 481, '_elementor_edit_mode', 'builder'),
(4680, 481, '_elementor_template_type', 'wp-page'),
(4681, 481, '_elementor_version', '3.33.0'),
(4682, 481, '_elementor_pro_version', '3.25.4'),
(4683, 481, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}]},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4684, 481, '_elementor_page_settings', 'a:0:{}'),
(4687, 482, '_wp_page_template', 'elementor_header_footer'),
(4689, 482, '_elementor_edit_mode', 'builder'),
(4690, 482, '_elementor_template_type', 'wp-page'),
(4691, 482, '_elementor_version', '3.33.0'),
(4692, 482, '_elementor_pro_version', '3.25.4'),
(4693, 482, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}]},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4707, 483, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5021, 514, '_elementor_edit_mode', 'builder'),
(5022, 514, '_elementor_template_type', 'header'),
(5023, 514, '_elementor_version', '3.33.0'),
(5024, 514, '_elementor_pro_version', '3.25.4'),
(5025, 514, '_wp_page_template', 'default');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5026, 514, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"link_click\":\"inline\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"link_click\":\"inline\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fa08d1f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"12\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"\"},\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#4E4F5221\"},\"elements\":[{\"id\":\"a0a2324\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"1946668\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Design-Full-Logo.avif\",\"id\":48,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"33c4891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"a4f3f51\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"2ce2a97\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2c9345c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf57bb8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"449fc1a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c2eeee7\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"55afdba\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"5ba0a7c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7cfe67\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"25ff9b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"78d11dd\"}],\"pp_display_conditions\":[{\"_id\":\"9c1b3d8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"195ce54\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ccb607c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(4721, 484, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5809, 600, '_elementor_edit_mode', 'builder'),
(5810, 600, '_elementor_template_type', 'header'),
(5811, 600, '_elementor_version', '3.33.0'),
(5812, 600, '_elementor_pro_version', '3.25.4'),
(5813, 600, '_wp_page_template', 'default'),
(5814, 600, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"link_click\":\"inline\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"link_click\":\"inline\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fa08d1f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"12\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"\"},\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#4E4F5221\"},\"elements\":[{\"id\":\"a0a2324\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"1946668\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/logo-3.png\",\"id\":599,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":139,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"33c4891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"a4f3f51\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"2ce2a97\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2c9345c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf57bb8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"449fc1a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c2eeee7\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"55afdba\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"5ba0a7c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7cfe67\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"25ff9b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"78d11dd\"}],\"pp_display_conditions\":[{\"_id\":\"9c1b3d8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"195ce54\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ccb607c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(4735, 485, '_elementor_page_settings', 'a:0:{}'),
(4738, 486, '_wp_page_template', 'elementor_header_footer'),
(4739, 486, '_elementor_edit_mode', 'builder'),
(4740, 486, '_elementor_template_type', 'wp-page'),
(4741, 486, '_elementor_version', '3.33.0'),
(4742, 486, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4743, 486, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4745, 486, '_elementor_page_settings', 'a:0:{}'),
(4837, 496, '_wp_page_template', 'elementor_header_footer'),
(4748, 487, '_wp_page_template', 'elementor_header_footer'),
(4749, 487, '_elementor_edit_mode', 'builder'),
(4750, 487, '_elementor_template_type', 'wp-page'),
(4751, 487, '_elementor_version', '3.33.0'),
(4752, 487, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4753, 487, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4852, 497, '_wp_page_template', 'elementor_header_footer'),
(4853, 497, '_elementor_edit_mode', 'builder'),
(4854, 497, '_elementor_template_type', 'wp-page'),
(4855, 497, '_elementor_version', '3.33.0'),
(4856, 497, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4857, 497, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4768, 488, '_elementor_page_settings', 'a:0:{}'),
(4771, 489, '_wp_page_template', 'elementor_header_footer'),
(4773, 489, '_elementor_edit_mode', 'builder'),
(4774, 489, '_elementor_template_type', 'wp-page'),
(4775, 489, '_elementor_version', '3.33.0'),
(4776, 489, '_elementor_pro_version', '3.25.4'),
(4777, 489, '_elementor_data', '[{\"id\":\"433f982\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}]},\"elements\":[{\"id\":\"1d8f162\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"96eaf19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb60ea8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df33c90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0dd6823\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"848cb4a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"138f1d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21987f6\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact page Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4778, 489, '_elementor_page_settings', 'a:0:{}'),
(4783, 490, '_elementor_edit_mode', 'builder'),
(4784, 490, '_elementor_template_type', 'wp-page'),
(4785, 490, '_elementor_version', '3.33.0'),
(4786, 490, '_elementor_pro_version', '3.25.4'),
(4787, 490, '_elementor_data', '[{\"id\":\"433f982\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}]},\"elements\":[{\"id\":\"1d8f162\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"96eaf19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb60ea8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df33c90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0dd6823\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"848cb4a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"138f1d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21987f6\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact page Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4807, 492, '_elementor_page_settings', 'a:0:{}'),
(4810, 493, '_elementor_edit_mode', 'builder'),
(4811, 493, '_elementor_template_type', 'wp-page'),
(4812, 493, '_elementor_version', '3.33.0'),
(4813, 493, '_elementor_pro_version', '3.25.4'),
(4814, 493, '_elementor_data', '[{\"id\":\"433f982\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}]},\"elements\":[{\"id\":\"1d8f162\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"96eaf19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb60ea8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df33c90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0dd6823\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"848cb4a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"138f1d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21987f6\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact page Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5567, 572, '_wp_page_template', 'elementor_header_footer'),
(5569, 572, '_elementor_edit_mode', 'builder'),
(5570, 572, '_elementor_template_type', 'wp-page'),
(5571, 572, '_elementor_version', '3.33.0'),
(5572, 572, '_elementor_pro_version', '3.25.4'),
(5573, 572, '_elementor_data', '[{\"id\":\"433f982\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}]},\"elements\":[{\"id\":\"1d8f162\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"96eaf19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb60ea8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df33c90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0dd6823\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"848cb4a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"138f1d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21987f6\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact page Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4824, 494, '_elementor_page_settings', 'a:0:{}'),
(4827, 495, '_wp_page_template', 'elementor_header_footer'),
(4828, 495, '_elementor_edit_mode', 'builder'),
(4829, 495, '_elementor_template_type', 'wp-page'),
(4830, 495, '_elementor_version', '3.33.0'),
(4831, 495, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4832, 495, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4834, 495, '_elementor_page_settings', 'a:0:{}'),
(4838, 496, '_elementor_edit_mode', 'builder'),
(4839, 496, '_elementor_template_type', 'wp-page'),
(4840, 496, '_elementor_version', '3.33.0'),
(4841, 496, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4842, 496, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5069, 518, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4885, 500, '_wp_page_template', 'elementor_header_footer'),
(4886, 500, '_elementor_edit_mode', 'builder'),
(4887, 500, '_elementor_template_type', 'wp-page'),
(4888, 500, '_elementor_version', '3.33.0'),
(4889, 500, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4890, 500, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5596, 29, '_elementor_page_settings', 'a:0:{}'),
(5597, 29, '_elementor_controls_usage', 'a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:6:{s:13:\"selected_icon\";i:2;s:4:\"view\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:4:\"link\";i:2;s:10:\"title_size\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:3:{s:8:\"position\";i:2;s:15:\"position_mobile\";i:2;s:26:\"content_vertical_alignment\";i:2;}s:18:\"section_style_icon\";a:2:{s:9:\"icon_size\";i:2;s:12:\"icon_padding\";i:2;}s:21:\"section_style_content\";a:2:{s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_weight\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:3;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_size\";i:1;s:11:\"button_text\";i:1;}s:13:\"section_email\";a:5:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:14:\"email_reply_to\";i:1;s:13:\"form_metadata\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;s:31:\"label_typography_text_transform\";i:1;}s:19:\"section_field_style\";a:2:{s:22:\"field_background_color\";i:1;s:18:\"field_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(4859, 497, '_elementor_page_settings', 'a:0:{}'),
(4862, 498, '_wp_page_template', 'elementor_header_footer'),
(4863, 498, '_elementor_edit_mode', 'builder'),
(4864, 498, '_elementor_template_type', 'wp-page'),
(4865, 498, '_elementor_version', '3.33.0'),
(4866, 498, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4867, 498, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4869, 498, '_elementor_page_settings', 'a:0:{}'),
(4872, 499, '_wp_page_template', 'elementor_header_footer'),
(4873, 499, '_elementor_edit_mode', 'builder'),
(4874, 499, '_elementor_template_type', 'wp-page'),
(4875, 499, '_elementor_version', '3.33.0'),
(4876, 499, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4877, 499, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5065, 518, '_elementor_edit_mode', 'builder'),
(4919, 503, '_elementor_edit_mode', 'builder'),
(4920, 503, '_elementor_template_type', 'wp-page'),
(4921, 503, '_elementor_version', '3.33.0'),
(4922, 503, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4923, 503, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\",\"background_hover_color\":\"#87CF7C\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4892, 500, '_elementor_page_settings', 'a:0:{}'),
(4895, 501, '_wp_page_template', 'elementor_header_footer'),
(4896, 501, '_elementor_edit_mode', 'builder'),
(4897, 501, '_elementor_template_type', 'wp-page'),
(4898, 501, '_elementor_version', '3.33.0'),
(4899, 501, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4900, 501, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4902, 501, '_elementor_page_settings', 'a:0:{}'),
(5066, 518, '_elementor_template_type', 'wp-page'),
(5067, 518, '_elementor_version', '3.33.0'),
(5068, 518, '_elementor_pro_version', '3.25.4'),
(4905, 502, '_wp_page_template', 'elementor_header_footer'),
(4906, 502, '_elementor_edit_mode', 'builder'),
(4907, 502, '_elementor_template_type', 'wp-page'),
(4908, 502, '_elementor_version', '3.33.0'),
(4909, 502, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4910, 502, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\",\"background_hover_color\":\"#87CF7C\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4951, 506, '_wp_page_template', 'elementor_header_footer'),
(4952, 506, '_elementor_edit_mode', 'builder'),
(4953, 506, '_elementor_template_type', 'wp-page'),
(4954, 506, '_elementor_version', '3.33.0'),
(4955, 506, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4956, 506, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\",\"background_hover_color\":\"#87CF7C\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4925, 503, '_elementor_page_settings', 'a:0:{}'),
(4928, 504, '_wp_page_template', 'elementor_header_footer'),
(4929, 504, '_elementor_edit_mode', 'builder'),
(4930, 504, '_elementor_template_type', 'wp-page'),
(4931, 504, '_elementor_version', '3.33.0'),
(4932, 504, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4933, 504, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\",\"background_hover_color\":\"#87CF7C\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4935, 504, '_elementor_page_settings', 'a:0:{}'),
(4971, 508, '_wp_page_template', 'elementor_header_footer'),
(4938, 505, '_wp_page_template', 'elementor_header_footer'),
(4939, 505, '_elementor_edit_mode', 'builder'),
(4940, 505, '_elementor_template_type', 'wp-page'),
(4941, 505, '_elementor_version', '3.33.0'),
(4942, 505, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4943, 505, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\",\"background_hover_color\":\"#87CF7C\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5064, 518, '_wp_page_template', 'elementor_header_footer'),
(4986, 510, '_wp_page_template', 'elementor_header_footer'),
(4987, 510, '_elementor_edit_mode', 'builder'),
(4988, 510, '_elementor_template_type', 'wp-page'),
(4989, 510, '_elementor_version', '3.33.0'),
(4990, 510, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4991, 510, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4958, 506, '_elementor_page_settings', 'a:0:{}'),
(4961, 507, '_wp_page_template', 'elementor_header_footer'),
(4962, 507, '_elementor_edit_mode', 'builder'),
(4963, 507, '_elementor_template_type', 'wp-page'),
(4964, 507, '_elementor_version', '3.33.0'),
(4965, 507, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4966, 507, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\",\"background_hover_color\":\"#87CF7C\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4968, 507, '_elementor_page_settings', 'a:0:{}'),
(4972, 508, '_elementor_edit_mode', 'builder'),
(4973, 508, '_elementor_template_type', 'wp-page'),
(4974, 508, '_elementor_version', '3.33.0'),
(4975, 508, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4976, 508, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5046, 516, '_wp_page_template', 'elementor_header_footer'),
(5047, 516, '_elementor_edit_mode', 'builder'),
(5048, 516, '_elementor_template_type', 'wp-page'),
(5049, 516, '_elementor_version', '3.33.0'),
(5050, 516, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5051, 516, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4984, 509, '_wp_attached_file', '2025/11/0-Atm-Cash-Withdrawal-1920X1010.mp4'),
(4985, 509, '_wp_attachment_metadata', 'a:10:{s:7:\"bitrate\";i:1034310;s:8:\"filesize\";i:3666430;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:28;s:16:\"length_formatted\";s:4:\"0:28\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:17:\"created_timestamp\";i:1763794520;}'),
(4993, 510, '_elementor_page_settings', 'a:0:{}'),
(4996, 511, '_wp_page_template', 'elementor_header_footer'),
(4997, 511, '_elementor_edit_mode', 'builder'),
(4998, 511, '_elementor_template_type', 'wp-page'),
(4999, 511, '_elementor_version', '3.33.0'),
(5000, 511, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5001, 511, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-4.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5003, 511, '_elementor_page_settings', 'a:0:{}'),
(5006, 512, '_wp_page_template', 'elementor_header_footer'),
(5007, 512, '_elementor_edit_mode', 'builder'),
(5008, 512, '_elementor_template_type', 'wp-page'),
(5009, 512, '_elementor_version', '3.33.0'),
(5010, 512, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5011, 512, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5096, 521, '_wp_page_template', 'elementor_header_footer'),
(5076, 519, '_wp_page_template', 'elementor_header_footer'),
(5077, 519, '_elementor_edit_mode', 'builder'),
(5078, 519, '_elementor_template_type', 'wp-page'),
(5079, 519, '_elementor_version', '3.33.0'),
(5080, 519, '_elementor_pro_version', '3.25.4'),
(5081, 519, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5019, 513, '_wp_attached_file', '2025/11/Design_Full_Logo__2_-removebg-preview.png');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5020, 513, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:78;s:6:\"height\";i:62;s:4:\"file\";s:49:\"2025/11/Design_Full_Logo__2_-removebg-preview.png\";s:8:\"filesize\";i:4699;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5028, 514, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5821, 601, '_elementor_edit_mode', 'builder'),
(5822, 601, '_elementor_template_type', 'header'),
(5823, 601, '_elementor_version', '3.33.0'),
(5824, 601, '_elementor_pro_version', '3.25.4'),
(5825, 601, '_wp_page_template', 'default'),
(5826, 601, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"link_click\":\"inline\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"link_click\":\"inline\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fa08d1f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"12\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"\"},\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#4E4F5221\"},\"elements\":[{\"id\":\"a0a2324\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"1946668\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/logo-3.png\",\"id\":599,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"33c4891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"a4f3f51\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"2ce2a97\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2c9345c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf57bb8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"449fc1a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c2eeee7\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"55afdba\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"5ba0a7c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7cfe67\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"25ff9b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"78d11dd\"}],\"pp_display_conditions\":[{\"_id\":\"9c1b3d8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"195ce54\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ccb607c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(5053, 516, '_elementor_page_settings', 'a:0:{}'),
(5055, 517, '_wp_page_template', 'elementor_header_footer'),
(5056, 517, '_elementor_edit_mode', 'builder'),
(5057, 517, '_elementor_template_type', 'wp-page'),
(5058, 517, '_elementor_version', '3.33.0'),
(5059, 517, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5060, 517, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a5cda8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3ee57c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7145ec2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98e3b05\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2d9d8f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1476bb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"}},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5062, 517, '_elementor_page_settings', 'a:0:{}'),
(5131, 525, '_wp_page_template', 'elementor_header_footer'),
(5083, 519, '_elementor_page_settings', 'a:0:{}'),
(5086, 520, '_wp_page_template', 'elementor_header_footer'),
(5087, 520, '_elementor_edit_mode', 'builder'),
(5088, 520, '_elementor_template_type', 'wp-page'),
(5089, 520, '_elementor_version', '3.33.0'),
(5090, 520, '_elementor_pro_version', '3.25.4'),
(5091, 520, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5093, 520, '_elementor_page_settings', 'a:0:{}'),
(5097, 521, '_elementor_edit_mode', 'builder'),
(5098, 521, '_elementor_template_type', 'wp-page'),
(5099, 521, '_elementor_version', '3.33.0'),
(5100, 521, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5101, 521, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5164, 528, '_wp_page_template', 'elementor_header_footer'),
(5144, 526, '_wp_page_template', 'elementor_header_footer'),
(5145, 526, '_elementor_edit_mode', 'builder'),
(5146, 526, '_elementor_template_type', 'wp-page'),
(5147, 526, '_elementor_version', '3.33.0'),
(5148, 526, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5149, 526, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5109, 522, '_wp_attached_file', '2025/11/10895-1.jpg');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5110, 522, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2025/11/10895-1.jpg\";s:8:\"filesize\";i:51907;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"10895-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7003;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"10895-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44065;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"10895-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3927;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"10895-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27931;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5118, 523, '_elementor_page_settings', 'a:0:{}'),
(5121, 524, '_wp_page_template', 'elementor_header_footer'),
(5122, 524, '_elementor_edit_mode', 'builder'),
(5123, 524, '_elementor_template_type', 'wp-page'),
(5124, 524, '_elementor_version', '3.33.0'),
(5125, 524, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5126, 524, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5128, 524, '_elementor_page_settings', 'a:0:{}'),
(5132, 525, '_elementor_edit_mode', 'builder'),
(5133, 525, '_elementor_template_type', 'wp-page'),
(5134, 525, '_elementor_version', '3.33.0'),
(5135, 525, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5136, 525, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5282, 540, '_wp_page_template', 'elementor_header_footer'),
(5262, 538, '_wp_page_template', 'elementor_header_footer'),
(5263, 538, '_elementor_edit_mode', 'builder'),
(5264, 538, '_elementor_template_type', 'wp-page'),
(5265, 538, '_elementor_version', '3.33.0'),
(5266, 538, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5267, 538, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5151, 526, '_elementor_page_settings', 'a:0:{}'),
(5154, 527, '_wp_page_template', 'elementor_header_footer'),
(5155, 527, '_elementor_edit_mode', 'builder'),
(5156, 527, '_elementor_template_type', 'wp-page'),
(5157, 527, '_elementor_version', '3.33.0'),
(5158, 527, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5159, 527, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5161, 527, '_elementor_page_settings', 'a:0:{}'),
(5165, 528, '_elementor_edit_mode', 'builder'),
(5166, 528, '_elementor_template_type', 'wp-page'),
(5167, 528, '_elementor_version', '3.33.0'),
(5168, 528, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5169, 528, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5317, 544, '_wp_page_template', 'elementor_header_footer'),
(5297, 542, '_wp_page_template', 'elementor_header_footer'),
(5298, 542, '_elementor_edit_mode', 'builder'),
(5299, 542, '_elementor_template_type', 'wp-page'),
(5300, 542, '_elementor_version', '3.33.0'),
(5301, 542, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5302, 542, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/istockphoto-157742051-612x612-1.jpg\",\"id\":537,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5184, 529, '_elementor_page_settings', 'a:0:{}'),
(5187, 530, '_wp_page_template', 'elementor_header_footer'),
(5189, 530, '_elementor_edit_mode', 'builder'),
(5190, 530, '_elementor_template_type', 'wp-page'),
(5191, 530, '_elementor_version', '3.33.0'),
(5192, 530, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5193, 530, '_elementor_data', '[{\"id\":\"e7cdc50\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"93a2939\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eeb8e1f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2452a0b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2161e3d\"}]},\"elements\":[{\"id\":\"a6967d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b7c393\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bafde60\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79871db\"}],\"pp_display_conditions\":[{\"_id\":\"c249100\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3e6727b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/14392996-2-1.jpg\",\"id\":444,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"1efafb6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"081ab36\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"90dfaab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80a00a3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"144bbc0\"}],\"pp_display_conditions\":[{\"_id\":\"e2d192e\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca802c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ed2a46\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"89b3b17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.<\\/p><p>When you partner with us, you\\u2019re not just getting a machine. You\\u2019re gaining a responsive, service-driven team that values your growth.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5194, 530, '_elementor_page_settings', 'a:0:{}'),
(5199, 531, '_elementor_edit_mode', 'builder'),
(5200, 531, '_elementor_template_type', 'wp-page'),
(5201, 531, '_elementor_version', '3.33.0'),
(5202, 531, '_elementor_pro_version', '3.25.4'),
(5203, 531, '_elementor_data', '[{\"id\":\"e7cdc50\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"93a2939\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eeb8e1f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2452a0b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2161e3d\"}]},\"elements\":[{\"id\":\"a6967d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b7c393\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bafde60\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79871db\"}],\"pp_display_conditions\":[{\"_id\":\"c249100\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3e6727b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"1efafb6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"081ab36\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"90dfaab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80a00a3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"144bbc0\"}],\"pp_display_conditions\":[{\"_id\":\"e2d192e\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca802c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ed2a46\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"89b3b17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.<\\/p><p>When you partner with us, you\\u2019re not just getting a machine. You\\u2019re gaining a responsive, service-driven team that values your growth.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8058, 839, '_wp_page_template', 'elementor_header_footer'),
(8038, 837, '_wp_page_template', 'elementor_header_footer'),
(8040, 837, '_elementor_edit_mode', 'builder'),
(8041, 837, '_elementor_template_type', 'wp-page'),
(8042, 837, '_elementor_version', '3.33.0'),
(8043, 837, '_elementor_pro_version', '3.25.4'),
(8044, 837, '_elementor_data', '[{\"id\":\"e7cdc50\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"93a2939\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eeb8e1f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2452a0b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2161e3d\"}]},\"elements\":[{\"id\":\"a6967d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b7c393\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bafde60\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79871db\"}],\"pp_display_conditions\":[{\"_id\":\"c249100\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3e6727b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"1efafb6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"081ab36\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"90dfaab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80a00a3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"144bbc0\"}],\"pp_display_conditions\":[{\"_id\":\"e2d192e\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca802c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0e0f082\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a048c2e\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c5a45d3\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d45c5c3\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Secure Swipe Solutions\",\"description_text\":\"provides reliable ATM placement services that help small and\\nmedium businesses save time, boost cashflow, and delivers an enhanced customer\\nexperience (without the headaches or hidden fees). \",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/privacy_18610789.svg\",\"id\":735},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(8089, 843, '_elementor_edit_mode', 'builder'),
(8090, 843, '_elementor_template_type', 'wp-page'),
(5217, 532, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5239, 534, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5244, 535, '_elementor_edit_mode', 'builder'),
(5245, 535, '_elementor_template_type', 'footer'),
(5246, 535, '_elementor_version', '3.33.0'),
(5247, 535, '_elementor_pro_version', '3.25.4'),
(5248, 535, '_wp_page_template', 'default'),
(5249, 535, '_elementor_data', '[{\"id\":\"5a753bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#042A46\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c374e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"aec388d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa4f733\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0a14c61\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9372a75\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"baf9146\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"37d9fe3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eab0b4c\"}],\"pp_display_conditions\":[{\"_id\":\"ee022c6\"}]},\"elements\":[{\"id\":\"c661f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Link\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1dff565\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ac5ef\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"51f0097\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services Snapshot\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/services-snapshot\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1bedd45\"},{\"text\":\"Why Choose Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eba2a8c\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7771776\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90c63b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"c892fd9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8312d34\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d81cab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4854862\"}],\"pp_display_conditions\":[{\"_id\":\"6b11cbf\"}]},\"elements\":[{\"id\":\"73381aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1dff565\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b602097\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call us (818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"51f0097\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto;admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1bedd45\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90c63b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"38d1023\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d3857b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9f668ce\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31d9f4f\"}],\"pp_display_conditions\":[{\"_id\":\"fd37a4a\"}]},\"elements\":[{\"id\":\"62c3f98\",\"elType\":\"widget\",\"settings\":{\"address\":\"Greater Los Angeles\",\"height\":{\"unit\":\"px\",\"size\":227,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"561908e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"zoom\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0c04719\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#042A46E0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b13e827\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4a1ebbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f312801\"}],\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"db18f4c\"}]},\"elements\":[{\"id\":\"70d6c57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a92025 - All Rights Reserved.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f4ae993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(5881, 609, '_elementor_edit_mode', 'builder'),
(5882, 609, '_elementor_template_type', 'footer'),
(5883, 609, '_elementor_version', '3.33.0'),
(5884, 609, '_elementor_pro_version', '3.25.4'),
(5885, 609, '_wp_page_template', 'default'),
(5886, 609, '_elementor_data', '[{\"id\":\"5a753bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#042A46\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c374e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"aec388d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa4f733\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0a14c61\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9372a75\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"baf9146\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"37d9fe3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eab0b4c\"}],\"pp_display_conditions\":[{\"_id\":\"ee022c6\"}]},\"elements\":[{\"id\":\"c661f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Link\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1dff565\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ac5ef\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"51f0097\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services Snapshot\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/services-snapshot\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1bedd45\"},{\"text\":\"Why Choose Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eba2a8c\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7771776\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90c63b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"c892fd9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8312d34\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d81cab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4854862\"}],\"pp_display_conditions\":[{\"_id\":\"6b11cbf\"}]},\"elements\":[{\"id\":\"73381aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1dff565\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b602097\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call us (818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"51f0097\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto;admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1bedd45\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90c63b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"38d1023\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d3857b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9f668ce\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31d9f4f\"}],\"pp_display_conditions\":[{\"_id\":\"fd37a4a\"}]},\"elements\":[{\"id\":\"62c3f98\",\"elType\":\"widget\",\"settings\":{\"address\":\"Los Angeles\",\"height\":{\"unit\":\"px\",\"size\":227,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"561908e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"zoom\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0c04719\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#042A46E0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b13e827\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4a1ebbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f312801\"}],\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"db18f4c\"}]},\"elements\":[{\"id\":\"70d6c57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a92025 - All Rights Reserved.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f4ae993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(5251, 535, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7859, 817, '_elementor_edit_mode', 'builder'),
(7860, 817, '_elementor_template_type', 'footer'),
(7861, 817, '_elementor_version', '3.33.0'),
(7862, 817, '_elementor_pro_version', '3.25.4'),
(7863, 817, '_wp_page_template', 'default'),
(7864, 817, '_elementor_data', '[{\"id\":\"5a753bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#042A46\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9c374e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"aec388d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa4f733\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"0a14c61\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"9372a75\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"baf9146\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"37d9fe3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eab0b4c\"}],\"pp_display_conditions\":[{\"_id\":\"ee022c6\"}]},\"elements\":[{\"id\":\"c661f12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Link\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1dff565\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ac5ef\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"51f0097\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services Snapshot\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/services-snapshot\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1bedd45\"},{\"text\":\"Why Choose Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"eba2a8c\"},{\"text\":\"How It Works\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/how-it-works\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"751d3db\"},{\"text\":\"FAQs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/faqs\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"14a7a2e\"},{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7771776\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90c63b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"c892fd9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8312d34\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d81cab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4854862\"}],\"pp_display_conditions\":[{\"_id\":\"6b11cbf\"}]},\"elements\":[{\"id\":\"73381aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1dff565\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b602097\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Call us (818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"51f0097\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto;admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1bedd45\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90c63b0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"38d1023\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d3857b0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9f668ce\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31d9f4f\"}],\"pp_display_conditions\":[{\"_id\":\"fd37a4a\"}]},\"elements\":[{\"id\":\"62c3f98\",\"elType\":\"widget\",\"settings\":{\"address\":\"Los Angeles\",\"height\":{\"unit\":\"px\",\"size\":227,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"561908e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"zoom\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0c04719\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#042A46E0\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b13e827\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4a1ebbe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f312801\"}],\"padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"db18f4c\"}]},\"elements\":[{\"id\":\"70d6c57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a92025 - All Rights Reserved.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f4ae993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]'),
(5258, 536, '_wp_attached_file', '2025/11/protected-atm-booth-design.jpg'),
(5259, 536, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:690;s:6:\"height\";i:400;s:4:\"file\";s:38:\"2025/11/protected-atm-booth-design.jpg\";s:8:\"filesize\";i:47477;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"protected-atm-booth-design-300x174.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12324;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"protected-atm-booth-design-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6605;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5260, 537, '_wp_attached_file', '2025/11/istockphoto-157742051-612x612-1.jpg'),
(5261, 537, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:612;s:6:\"height\";i:367;s:4:\"file\";s:43:\"2025/11/istockphoto-157742051-612x612-1.jpg\";s:8:\"filesize\";i:24398;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"istockphoto-157742051-612x612-1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11343;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"istockphoto-157742051-612x612-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6980;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Getty Images\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:30:\"Detailed Image of a modern ATM\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"luismmolina\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:30:\"Detailed Image of a modern ATM\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5269, 538, '_elementor_page_settings', 'a:0:{}'),
(5272, 539, '_wp_page_template', 'elementor_header_footer'),
(5273, 539, '_elementor_edit_mode', 'builder'),
(5274, 539, '_elementor_template_type', 'wp-page'),
(5275, 539, '_elementor_version', '3.33.0'),
(5276, 539, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5277, 539, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5279, 539, '_elementor_page_settings', 'a:0:{}'),
(5283, 540, '_elementor_edit_mode', 'builder'),
(5284, 540, '_elementor_template_type', 'wp-page'),
(5285, 540, '_elementor_version', '3.33.0'),
(5286, 540, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5287, 540, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/istockphoto-157742051-612x612-1.jpg\",\"id\":537,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5350, 547, '_wp_page_template', 'elementor_header_footer'),
(5330, 545, '_wp_page_template', 'elementor_header_footer'),
(5331, 545, '_elementor_edit_mode', 'builder'),
(5332, 545, '_elementor_template_type', 'wp-page'),
(5333, 545, '_elementor_version', '3.33.0'),
(5334, 545, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5335, 545, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5295, 541, '_wp_attached_file', '2025/11/9248099-1.jpg');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5296, 541, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:997;s:4:\"file\";s:21:\"2025/11/9248099-1.jpg\";s:8:\"filesize\";i:83305;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"9248099-1-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10404;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"9248099-1-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65935;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"9248099-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5894;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"9248099-1-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42719;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5304, 542, '_elementor_page_settings', 'a:0:{}'),
(5307, 543, '_wp_page_template', 'elementor_header_footer'),
(5308, 543, '_elementor_edit_mode', 'builder'),
(5309, 543, '_elementor_template_type', 'wp-page'),
(5310, 543, '_elementor_version', '3.33.0'),
(5311, 543, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5312, 543, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/istockphoto-157742051-612x612-1.jpg\",\"id\":537,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5314, 543, '_elementor_page_settings', 'a:0:{}'),
(5318, 544, '_elementor_edit_mode', 'builder'),
(5319, 544, '_elementor_template_type', 'wp-page'),
(5320, 544, '_elementor_version', '3.33.0'),
(5321, 544, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5322, 544, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5385, 551, '_wp_page_template', 'elementor_header_footer'),
(5365, 549, '_wp_page_template', 'elementor_header_footer'),
(5366, 549, '_elementor_edit_mode', 'builder'),
(5367, 549, '_elementor_template_type', 'wp-page'),
(5368, 549, '_elementor_version', '3.33.0'),
(5369, 549, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5370, 549, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5337, 545, '_elementor_page_settings', 'a:0:{}'),
(5340, 546, '_wp_page_template', 'elementor_header_footer'),
(5341, 546, '_elementor_edit_mode', 'builder'),
(5342, 546, '_elementor_template_type', 'wp-page'),
(5343, 546, '_elementor_version', '3.33.0'),
(5344, 546, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5345, 546, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5347, 546, '_elementor_page_settings', 'a:0:{}'),
(5351, 547, '_elementor_edit_mode', 'builder'),
(5352, 547, '_elementor_template_type', 'wp-page'),
(5353, 547, '_elementor_version', '3.33.0'),
(5354, 547, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5355, 547, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5418, 554, '_wp_page_template', 'elementor_header_footer'),
(5398, 552, '_wp_page_template', 'elementor_header_footer'),
(5399, 552, '_elementor_edit_mode', 'builder'),
(5400, 552, '_elementor_template_type', 'wp-page'),
(5401, 552, '_elementor_version', '3.33.0'),
(5402, 552, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5403, 552, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5363, 548, '_wp_attached_file', '2025/11/WhatsApp-Image-2025-11-22-at-14.02.24-1.jpeg');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5364, 548, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:52:\"2025/11/WhatsApp-Image-2025-11-22-at-14.02.24-1.jpeg\";s:8:\"filesize\";i:44053;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2025-11-22-at-14.02.24-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11621;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2025-11-22-at-14.02.24-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4226;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2025-11-22-at-14.02.24-1-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45577;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5372, 549, '_elementor_page_settings', 'a:0:{}'),
(5375, 550, '_wp_page_template', 'elementor_header_footer'),
(5376, 550, '_elementor_edit_mode', 'builder'),
(5377, 550, '_elementor_template_type', 'wp-page'),
(5378, 550, '_elementor_version', '3.33.0'),
(5379, 550, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5380, 550, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5382, 550, '_elementor_page_settings', 'a:0:{}'),
(5386, 551, '_elementor_edit_mode', 'builder'),
(5387, 551, '_elementor_template_type', 'wp-page'),
(5388, 551, '_elementor_version', '3.33.0'),
(5389, 551, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5390, 551, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5445, 557, '_wp_page_template', 'elementor_header_footer'),
(5429, 555, '_wp_page_template', 'elementor_header_footer'),
(5430, 555, '_elementor_edit_mode', 'builder'),
(5431, 555, '_elementor_template_type', 'wp-page'),
(5432, 555, '_elementor_version', '3.33.0'),
(5433, 555, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5434, 555, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5405, 552, '_elementor_page_settings', 'a:0:{}'),
(5408, 553, '_wp_page_template', 'elementor_header_footer'),
(5409, 553, '_elementor_edit_mode', 'builder'),
(5410, 553, '_elementor_template_type', 'wp-page'),
(5411, 553, '_elementor_version', '3.33.0'),
(5412, 553, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5413, 553, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5415, 553, '_elementor_page_settings', 'a:0:{}'),
(5419, 554, '_elementor_edit_mode', 'builder'),
(5420, 554, '_elementor_template_type', 'wp-page'),
(5421, 554, '_elementor_version', '3.33.0'),
(5422, 554, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5423, 554, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5444, 556, '_elementor_page_settings', 'a:0:{}'),
(5446, 557, '_elementor_edit_mode', 'builder'),
(5447, 557, '_elementor_template_type', 'wp-page'),
(5448, 557, '_elementor_version', '3.33.0'),
(5449, 557, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5450, 557, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5534, 569, '_wp_page_template', 'elementor_header_footer'),
(5535, 569, '_elementor_edit_mode', 'builder'),
(5536, 569, '_elementor_template_type', 'wp-page'),
(5537, 569, '_elementor_version', '3.33.0'),
(5538, 569, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5539, 569, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5495, 565, '_wp_page_template', 'elementor_header_footer'),
(5497, 565, '_elementor_edit_mode', 'builder'),
(5498, 565, '_elementor_template_type', 'wp-page'),
(5499, 565, '_elementor_version', '3.33.0'),
(5500, 565, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5501, 565, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}]},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5465, 559, '_wp_attached_file', '2025/11/medical_16481502.svg'),
(5466, 559, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3041;s:5:\"width\";i:1024;s:6:\"height\";i:1024;}'),
(5468, 560, '_wp_attached_file', '2025/11/money_2170875.svg'),
(5469, 560, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2701;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(5471, 561, '_wp_attached_file', '2025/11/dependable_10108269.svg'),
(5472, 561, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:7123;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(5474, 562, '_wp_attached_file', '2025/11/security_6865385.svg'),
(5475, 562, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1987;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(5484, 563, '_elementor_page_settings', 'a:0:{}'),
(5486, 564, '_wp_page_template', 'elementor_header_footer'),
(5488, 564, '_elementor_edit_mode', 'builder'),
(5489, 564, '_elementor_template_type', 'wp-page'),
(5490, 564, '_elementor_version', '3.33.0'),
(5491, 564, '_elementor_pro_version', '3.25.4'),
(5492, 564, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}]},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5493, 564, '_elementor_page_settings', 'a:0:{}'),
(5512, 566, '_elementor_page_settings', 'a:0:{}'),
(5513, 567, '_wp_page_template', 'elementor_header_footer'),
(5515, 567, '_elementor_edit_mode', 'builder'),
(5516, 567, '_elementor_template_type', 'wp-page'),
(5517, 567, '_elementor_version', '3.33.0'),
(5518, 567, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5519, 567, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}]},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5520, 567, '_elementor_page_settings', 'a:0:{}'),
(5521, 568, '_wp_page_template', 'elementor_header_footer'),
(5523, 568, '_elementor_edit_mode', 'builder'),
(5524, 568, '_elementor_template_type', 'wp-page'),
(5525, 568, '_elementor_version', '3.33.0'),
(5526, 568, '_elementor_pro_version', '3.25.4'),
(5527, 568, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6967, 722, '_wp_page_template', 'elementor_header_footer'),
(6969, 722, '_elementor_edit_mode', 'builder'),
(6970, 722, '_elementor_template_type', 'wp-page'),
(6971, 722, '_elementor_version', '3.33.0'),
(6972, 722, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6973, 722, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7014, 727, '_wp_page_template', 'elementor_header_footer'),
(6998, 725, '_wp_page_template', 'elementor_header_footer'),
(7000, 725, '_elementor_edit_mode', 'builder'),
(7001, 725, '_elementor_template_type', 'wp-page'),
(7002, 725, '_elementor_version', '3.33.0'),
(7003, 725, '_elementor_pro_version', '3.25.4'),
(7004, 725, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7005, 725, '_elementor_page_settings', 'a:0:{}'),
(7006, 726, '_wp_page_template', 'elementor_header_footer'),
(7008, 726, '_elementor_edit_mode', 'builder'),
(7009, 726, '_elementor_template_type', 'wp-page'),
(7010, 726, '_elementor_version', '3.33.0'),
(7011, 726, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7012, 726, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5626, 580, '_wp_page_template', 'elementor_header_footer'),
(5606, 578, '_wp_page_template', 'elementor_header_footer'),
(5607, 578, '_elementor_edit_mode', 'builder'),
(5608, 578, '_elementor_template_type', 'wp-page'),
(5609, 578, '_elementor_version', '3.33.0'),
(5610, 578, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5611, 578, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5639, 581, '_wp_page_template', 'elementor_header_footer'),
(5640, 581, '_elementor_edit_mode', 'builder'),
(5641, 581, '_elementor_template_type', 'wp-page'),
(5642, 581, '_elementor_version', '3.33.0'),
(5643, 581, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5644, 581, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-42.jpg\",\"id\":577,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5753, 592, '_elementor_page_settings', 'a:0:{}'),
(5754, 593, '_wp_page_template', 'elementor_header_footer'),
(5755, 593, '_elementor_edit_mode', 'builder'),
(5756, 593, '_elementor_template_type', 'wp-page'),
(5757, 593, '_elementor_version', '3.33.0'),
(5758, 593, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5759, 593, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15973605-1.jpg\",\"id\":585,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5541, 569, '_elementor_page_settings', 'a:0:{}'),
(5544, 570, '_wp_page_template', 'elementor_header_footer'),
(5545, 570, '_elementor_edit_mode', 'builder'),
(5546, 570, '_elementor_template_type', 'wp-page'),
(5547, 570, '_elementor_version', '3.33.0'),
(5548, 570, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5549, 570, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"235a3c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5551, 570, '_elementor_page_settings', 'a:0:{}'),
(5659, 583, '_wp_page_template', 'elementor_header_footer'),
(5574, 572, '_elementor_page_settings', 'a:0:{}'),
(5577, 573, '_wp_page_template', 'elementor_header_footer'),
(5579, 573, '_elementor_edit_mode', 'builder'),
(5580, 573, '_elementor_template_type', 'wp-page'),
(5581, 573, '_elementor_version', '3.33.0'),
(5582, 573, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5583, 573, '_elementor_data', '[{\"id\":\"433f982\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}]},\"elements\":[{\"id\":\"1d8f162\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"96eaf19\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb60ea8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df33c90\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0dd6823\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"848cb4a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Address:\",\"description_text\":\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=38.6029,-121.383568&z=10&t=m&hl=en-US&gl=US&mapclient=embed&cid=11117025124105474577\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"138f1d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"21987f6\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact page Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5584, 573, '_elementor_page_settings', 'a:0:{}'),
(5600, 575, '_wp_attached_file', '2025/11/New-Project-40.jpg'),
(5601, 575, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2025/11/New-Project-40.jpg\";s:8:\"filesize\";i:52472;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"New-Project-40-300x231.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8665;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"New-Project-40-1024x788.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:788;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48832;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"New-Project-40-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4062;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"New-Project-40-768x591.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:591;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32517;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5602, 576, '_wp_attached_file', '2025/11/New-Project-41.jpg'),
(5603, 576, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1300;s:4:\"file\";s:26:\"2025/11/New-Project-41.jpg\";s:8:\"filesize\";i:65551;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"New-Project-41-300x260.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9146;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"New-Project-41-1024x887.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:887;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50463;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"New-Project-41-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4080;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"New-Project-41-768x666.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:666;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33943;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5604, 577, '_wp_attached_file', '2025/11/New-Project-42.jpg'),
(5605, 577, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1300;s:4:\"file\";s:26:\"2025/11/New-Project-42.jpg\";s:8:\"filesize\";i:64604;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"New-Project-42-300x260.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9042;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"New-Project-42-1024x887.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:887;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49929;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"New-Project-42-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4118;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"New-Project-42-768x666.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:666;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33742;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5613, 578, '_elementor_page_settings', 'a:0:{}'),
(5616, 579, '_wp_page_template', 'elementor_header_footer'),
(5617, 579, '_elementor_edit_mode', 'builder'),
(5618, 579, '_elementor_template_type', 'wp-page'),
(5619, 579, '_elementor_version', '3.33.0'),
(5620, 579, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5621, 579, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5623, 579, '_elementor_page_settings', 'a:0:{}'),
(5627, 580, '_elementor_edit_mode', 'builder'),
(5628, 580, '_elementor_template_type', 'wp-page'),
(5629, 580, '_elementor_version', '3.33.0'),
(5630, 580, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5631, 580, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-42.jpg\",\"id\":577,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5703, 588, '_wp_page_template', 'elementor_header_footer'),
(5685, 586, '_wp_page_template', 'elementor_header_footer'),
(5686, 586, '_elementor_edit_mode', 'builder'),
(5687, 586, '_elementor_template_type', 'wp-page'),
(5688, 586, '_elementor_version', '3.33.0'),
(5689, 586, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5690, 586, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-42.jpg\",\"id\":577,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5646, 581, '_elementor_page_settings', 'a:0:{}'),
(5649, 582, '_wp_page_template', 'elementor_header_footer'),
(5650, 582, '_elementor_edit_mode', 'builder'),
(5651, 582, '_elementor_template_type', 'wp-page'),
(5652, 582, '_elementor_version', '3.33.0'),
(5653, 582, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5654, 582, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-42.jpg\",\"id\":577,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5656, 582, '_elementor_page_settings', 'a:0:{}'),
(5660, 583, '_elementor_edit_mode', 'builder'),
(5661, 583, '_elementor_template_type', 'wp-page'),
(5662, 583, '_elementor_version', '3.33.0'),
(5663, 583, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5664, 583, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-42.jpg\",\"id\":577,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5735, 591, '_wp_page_template', 'elementor_header_footer'),
(5715, 589, '_wp_page_template', 'elementor_header_footer'),
(5716, 589, '_elementor_edit_mode', 'builder'),
(5717, 589, '_elementor_template_type', 'wp-page'),
(5718, 589, '_elementor_version', '3.33.0'),
(5719, 589, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5720, 589, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15973605-1.jpg\",\"id\":585,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5708, 588, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15973605-1.jpg\",\"id\":585,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5704, 588, '_elementor_edit_mode', 'builder'),
(5705, 588, '_elementor_template_type', 'wp-page'),
(5706, 588, '_elementor_version', '3.33.0'),
(5707, 588, '_elementor_pro_version', '3.25.4'),
(5683, 585, '_wp_attached_file', '2025/11/15973605-1.jpg'),
(5684, 585, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1001;s:4:\"file\";s:22:\"2025/11/15973605-1.jpg\";s:8:\"filesize\";i:86328;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"15973605-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12700;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"15973605-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75352;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"15973605-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5884;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"15973605-1-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49520;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5692, 586, '_elementor_page_settings', 'a:0:{}'),
(5694, 587, '_wp_page_template', 'elementor_header_footer'),
(5695, 587, '_elementor_edit_mode', 'builder'),
(5696, 587, '_elementor_template_type', 'wp-page'),
(5697, 587, '_elementor_version', '3.33.0'),
(5698, 587, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5699, 587, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-42.jpg\",\"id\":577,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5701, 587, '_elementor_page_settings', 'a:0:{}'),
(5762, 594, '_wp_page_template', 'elementor_header_footer'),
(5746, 592, '_wp_page_template', 'elementor_header_footer'),
(5747, 592, '_elementor_edit_mode', 'builder'),
(5748, 592, '_elementor_template_type', 'wp-page'),
(5749, 592, '_elementor_version', '3.33.0'),
(5750, 592, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5751, 592, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15973605-1.jpg\",\"id\":585,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5722, 589, '_elementor_page_settings', 'a:0:{}'),
(5725, 590, '_wp_page_template', 'elementor_header_footer'),
(5726, 590, '_elementor_edit_mode', 'builder'),
(5727, 590, '_elementor_template_type', 'wp-page'),
(5728, 590, '_elementor_version', '3.33.0'),
(5729, 590, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5730, 590, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15973605-1.jpg\",\"id\":585,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5732, 590, '_elementor_page_settings', 'a:0:{}'),
(5736, 591, '_elementor_edit_mode', 'builder'),
(5737, 591, '_elementor_template_type', 'wp-page'),
(5738, 591, '_elementor_version', '3.33.0'),
(5739, 591, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5740, 591, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15973605-1.jpg\",\"id\":585,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5761, 593, '_elementor_page_settings', 'a:0:{}'),
(5763, 594, '_elementor_edit_mode', 'builder'),
(5764, 594, '_elementor_template_type', 'wp-page'),
(5765, 594, '_elementor_version', '3.33.0'),
(5766, 594, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5767, 594, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15973605-1.jpg\",\"id\":585,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5793, 597, '_wp_page_template', 'elementor_header_footer'),
(5773, 595, '_wp_page_template', 'elementor_header_footer'),
(5774, 595, '_elementor_edit_mode', 'builder'),
(5775, 595, '_elementor_template_type', 'wp-page'),
(5776, 595, '_elementor_version', '3.33.0'),
(5777, 595, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5778, 595, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15973605-1.jpg\",\"id\":585,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5895, 610, '_wp_page_template', 'elementor_header_footer'),
(5896, 610, '_elementor_edit_mode', 'builder'),
(5897, 610, '_elementor_template_type', 'wp-page'),
(5898, 610, '_elementor_version', '3.33.0'),
(5899, 610, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5900, 610, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5996, 621, '_wp_page_template', 'elementor_header_footer'),
(5980, 619, '_wp_page_template', 'elementor_header_footer'),
(5981, 619, '_elementor_edit_mode', 'builder'),
(5982, 619, '_elementor_template_type', 'wp-page'),
(5983, 619, '_elementor_version', '3.33.0'),
(5984, 619, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5985, 619, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and o\\u01afer convenient cash access.\\nWe handle the installation, maintenance, cash loading, and support.\\nWith zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5987, 619, '_elementor_page_settings', 'a:0:{}'),
(5988, 620, '_wp_page_template', 'elementor_header_footer'),
(5989, 620, '_elementor_edit_mode', 'builder'),
(5990, 620, '_elementor_template_type', 'wp-page'),
(5991, 620, '_elementor_version', '3.33.0'),
(5992, 620, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5993, 620, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and o\\u01afer convenient cash access.\\nWe handle the installation, maintenance, cash loading, and support.\\nWith zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5928, 613, '_elementor_edit_mode', 'builder'),
(5929, 613, '_elementor_template_type', 'page'),
(5930, 613, '_elementor_version', '3.33.0'),
(5931, 613, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5939, 613, '_elementor_data', '[{\"id\":\"29c03cae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"4f6b499c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"19898ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59b397e9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"135881e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6712619f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d60a01a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5a95785a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"624dabb6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"459787c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5f1ead36\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"7883f0ea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c4101e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"116abe7d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5c1394a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"37eb2524\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"6cd788fd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"125d5521\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"20614042\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf64071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"7066dffb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"373aa1fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"20187955\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"4ac68412\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"30f0ef28\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"4f1e1efd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"7f531a93\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"61abe0e6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"1283d7a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"521c8e69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"19ba4fb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"5f038ee0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4127b39b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5584f4ef\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30433c60\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6059df7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1c8afab9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"73e331e0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"3eb07e2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1faf0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fe114e3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e9ab77\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"701be6a9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"56c1f198\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5933, 614, '_elementor_edit_mode', 'builder'),
(5934, 614, '_elementor_template_type', 'page'),
(5935, 614, '_elementor_version', '3.33.0'),
(5936, 614, '_elementor_pro_version', '3.25.4'),
(5937, 614, '_elementor_page_settings', 'a:0:{}'),
(5938, 613, '_wp_page_template', 'elementor_header_footer'),
(5780, 595, '_elementor_page_settings', 'a:0:{}'),
(5783, 596, '_wp_page_template', 'elementor_header_footer'),
(5784, 596, '_elementor_edit_mode', 'builder'),
(5785, 596, '_elementor_template_type', 'wp-page'),
(5786, 596, '_elementor_version', '3.33.0'),
(5787, 596, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5788, 596, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15973605-1.jpg\",\"id\":585,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5790, 596, '_elementor_page_settings', 'a:0:{}'),
(5794, 597, '_elementor_edit_mode', 'builder'),
(5795, 597, '_elementor_template_type', 'wp-page'),
(5796, 597, '_elementor_version', '3.33.0'),
(5797, 597, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5798, 597, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5949, 616, '_wp_page_template', 'elementor_header_footer'),
(5950, 616, '_elementor_edit_mode', 'builder'),
(5951, 616, '_elementor_template_type', 'wp-page'),
(5952, 616, '_elementor_version', '3.33.0'),
(5953, 616, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5954, 616, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5806, 29, '__elementor_forms_snapshot', '[{\"id\":\"21987f6\",\"name\":\"Contact page Form\",\"fields\":[{\"id\":\"name\",\"type\":\"text\",\"label\":\"First name\"},{\"id\":\"field_fa204ec\",\"type\":\"text\",\"label\":\"Last name\"},{\"id\":\"email\",\"type\":\"email\",\"label\":\"Email\"},{\"id\":\"field_80fa6df\",\"type\":\"tel\",\"label\":\"Phone\"},{\"id\":\"field_cd3fec3\",\"type\":\"text\",\"label\":\"Business Name\"},{\"id\":\"message\",\"type\":\"textarea\",\"label\":\"Message\"}]}]'),
(5807, 599, '_wp_attached_file', '2025/11/logo-3.png'),
(5808, 599, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:350;s:6:\"height\";i:168;s:4:\"file\";s:18:\"2025/11/logo-3.png\";s:8:\"filesize\";i:5401;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"logo-3-300x144.png\";s:5:\"width\";i:300;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5643;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"logo-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4357;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5816, 600, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5828, 601, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5833, 602, '_elementor_edit_mode', 'builder'),
(5834, 602, '_elementor_template_type', 'header'),
(5835, 602, '_elementor_version', '3.33.0'),
(5836, 602, '_elementor_pro_version', '3.25.4'),
(5837, 602, '_wp_page_template', 'default');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5838, 602, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"link_click\":\"inline\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"link_click\":\"inline\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fa08d1f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"10\",\"bottom\":\"12\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"\"},\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#4E4F5221\"},\"elements\":[{\"id\":\"a0a2324\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"1946668\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/logo-3.png\",\"id\":599,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"33c4891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"a4f3f51\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"2ce2a97\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2c9345c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf57bb8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"449fc1a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c2eeee7\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"55afdba\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"5ba0a7c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7cfe67\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"25ff9b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"78d11dd\"}],\"pp_display_conditions\":[{\"_id\":\"9c1b3d8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"195ce54\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ccb607c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(5845, 603, '_elementor_edit_mode', 'builder'),
(5846, 603, '_elementor_template_type', 'header'),
(5847, 603, '_elementor_version', '3.33.0'),
(5848, 603, '_elementor_pro_version', '3.25.4'),
(5849, 603, '_wp_page_template', 'default'),
(5850, 603, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"link_click\":\"inline\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"link_click\":\"inline\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fa08d1f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"\"},\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#4E4F5221\"},\"elements\":[{\"id\":\"a0a2324\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"1946668\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/logo-3.png\",\"id\":599,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":171,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"33c4891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"a4f3f51\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"2ce2a97\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2c9345c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf57bb8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"449fc1a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c2eeee7\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"55afdba\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"5ba0a7c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7cfe67\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"25ff9b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"78d11dd\"}],\"pp_display_conditions\":[{\"_id\":\"9c1b3d8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"195ce54\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ccb607c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(5840, 602, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5852, 603, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5858, 604, '_elementor_template_type', 'header'),
(5859, 604, '_elementor_version', '3.33.0'),
(5860, 604, '_elementor_pro_version', '3.25.4'),
(5861, 604, '_wp_page_template', 'default'),
(5862, 604, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\",\"icon_color_hover\":\"\"},\"link_click\":\"inline\",\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\",\"icon_color_hover\":\"\"},\"link_click\":\"inline\",\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fa08d1f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"\"},\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#4E4F5221\"},\"elements\":[{\"id\":\"a0a2324\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"33.3333\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"1946668\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/logo-3.png\",\"id\":599,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":171,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"33c4891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"66.6666\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"a4f3f51\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"2ce2a97\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2c9345c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf57bb8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"449fc1a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c2eeee7\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"55afdba\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"5ba0a7c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7cfe67\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"25ff9b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"78d11dd\"}],\"pp_display_conditions\":[{\"_id\":\"9c1b3d8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"195ce54\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ccb607c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(7361, 764, '_elementor_edit_mode', 'builder'),
(7362, 764, '_elementor_template_type', 'header'),
(7363, 764, '_elementor_version', '3.33.0'),
(7364, 764, '_elementor_pro_version', '3.25.4'),
(7365, 764, '_wp_page_template', 'default'),
(7366, 764, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\",\"icon_color_hover\":\"\"},\"link_click\":\"inline\",\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\",\"icon_color_hover\":\"\"},\"link_click\":\"inline\",\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fa08d1f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"\"},\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#4E4F5221\"},\"elements\":[{\"id\":\"a0a2324\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":21},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"1946668\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/logo-3.png\",\"id\":599,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":171,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"33c4891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"a4f3f51\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"2ce2a97\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2c9345c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf57bb8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"449fc1a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c2eeee7\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"55afdba\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"5ba0a7c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7cfe67\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"25ff9b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"78d11dd\"}],\"pp_display_conditions\":[{\"_id\":\"9c1b3d8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"195ce54\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ccb607c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(5864, 604, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(8916, 929, '_elementor_edit_mode', 'builder'),
(8917, 929, '_elementor_template_type', 'header'),
(8918, 929, '_elementor_version', '3.33.0'),
(8919, 929, '_elementor_pro_version', '3.25.4'),
(8920, 929, '_wp_page_template', 'default');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8921, 929, '_elementor_data', '[{\"id\":\"52c4e76\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9bf51f5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"05654b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31a3cb5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0cf90e7\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"109e9e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51a5bd\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24ca218\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"27f269e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d4be17a\"}]},\"elements\":[{\"id\":\"71b887d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"admin@SecureSwipeATMs.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\",\"icon_color_hover\":\"\"},\"link_click\":\"inline\",\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e980543\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c22055f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"970b4f7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"96e0c78\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c808779\"}]},\"elements\":[{\"id\":\"6713ce9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(818) 262-8674\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"3d6eaf6\",\"link\":{\"url\":\"tel:818262-8674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"9eb5259\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\",\"icon_color_hover\":\"\"},\"link_click\":\"inline\",\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\",\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fa08d1f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f18cc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"94549f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f17b1e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"10\",\"bottom\":\"7\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b7f79e3\"}],\"sticky\":\"top\",\"sticky_on\":[\"widescreen\",\"desktop\"],\"sticky_effects_offset\":50,\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"border_color\":\"\"},\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#4E4F5221\"},\"elements\":[{\"id\":\"a0a2324\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":21},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5177912\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e5beafc\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"30b6150\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"59b1b91\"}]},\"elements\":[{\"id\":\"1946668\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/logo-3.png\",\"id\":599,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":171,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"8fae82e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"33c4891\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":79},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afba6b7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cbf8d65\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"42e60c4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ba92666\"}]},\"elements\":[{\"id\":\"a4f3f51\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"pointer_color_menu_item_hover\":\"#02010100\",\"toggle_background_color\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_flex_align_self_tablet_extra\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3616ce5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor1\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"2ce2a97\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"25b65a4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2c9345c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/banner-5.jpg\",\"id\":37,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bf57bb8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"449fc1a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c2eeee7\"}],\"background_overlay_background\":\"classic\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"pp_display_conditions\":[{\"_id\":\"55afdba\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[{\"id\":\"5ba0a7c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7cfe67\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"25ff9b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"78d11dd\"}],\"pp_display_conditions\":[{\"_id\":\"9c1b3d8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"195ce54\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ccb607c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":true}],\"isInner\":false}]'),
(5871, 605, '_wp_attached_file', '2025/11/fav-4.png'),
(5872, 605, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:103;s:6:\"height\";i:112;s:4:\"file\";s:17:\"2025/11/fav-4.png\";s:8:\"filesize\";i:2232;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5873, 606, '_wp_attached_file', '2025/11/cropped-fav-4.png'),
(5874, 606, '_wp_attachment_context', 'site-icon'),
(5875, 606, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:25:\"2025/11/cropped-fav-4.png\";s:8:\"filesize\";i:39608;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"cropped-fav-4-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17838;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"cropped-fav-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5725;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:25:\"cropped-fav-4-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14874;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:25:\"cropped-fav-4-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7818;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:25:\"cropped-fav-4-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7427;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:23:\"cropped-fav-4-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1016;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5876, 607, '_wp_attached_file', '2025/11/fav-5.png'),
(5877, 607, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:103;s:6:\"height\";i:112;s:4:\"file\";s:17:\"2025/11/fav-5.png\";s:8:\"filesize\";i:2222;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5878, 608, '_wp_attached_file', '2025/11/cropped-fav-5.png'),
(5879, 608, '_wp_attachment_context', 'site-icon'),
(5880, 608, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:25:\"2025/11/cropped-fav-5.png\";s:8:\"filesize\";i:38277;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"cropped-fav-5-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18451;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"cropped-fav-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6267;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:25:\"cropped-fav-5-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15142;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:25:\"cropped-fav-5-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8547;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:25:\"cropped-fav-5-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7914;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:23:\"cropped-fav-5-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1339;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5888, 609, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7869, 369, '_elementor_page_settings', 'a:0:{}'),
(7870, 369, '_elementor_controls_usage', 'a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:2;s:10:\"link_click\";i:2;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:5;s:13:\"content_width\";i:3;s:5:\"width\";i:3;s:9:\"flex_wrap\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:5;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:6:\"height\";i:1;s:4:\"zoom\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(5902, 610, '_elementor_page_settings', 'a:0:{}'),
(5905, 611, '_wp_page_template', 'elementor_header_footer'),
(5906, 611, '_elementor_edit_mode', 'builder'),
(5907, 611, '_elementor_template_type', 'wp-page'),
(5908, 611, '_elementor_version', '3.33.0'),
(5909, 611, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5910, 611, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a4100cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_wrap\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"483076b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ba3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"ed60727\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box2_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0e2eb6f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"position\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"08e3cd3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"position_tablet\":\"top\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f5cfb3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"03a3a2e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"title_text\":\"All the Value, None of the Work\",\"description_text\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic\",\"title_size\":\"h4\",\"position\":\"right\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"157662d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"cbed03b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"position\":\"left\",\"position_tablet\":\"top\",\"content_vertical_alignment\":\"middle\",\"text_align\":\"right\",\"text_align_tablet\":\"center\",\"icon_space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"e47f100\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\",\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e492e67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5912, 611, '_elementor_page_settings', 'a:0:{}'),
(5940, 615, '_elementor_edit_mode', 'builder'),
(5941, 615, '_elementor_template_type', 'page'),
(5942, 615, '_elementor_version', '3.33.0'),
(5943, 615, '_elementor_pro_version', '3.25.4'),
(5944, 615, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5945, 615, '_elementor_data', '[{\"id\":\"29c03cae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"4f6b499c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"19898ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59b397e9\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"135881e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6712619f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d60a01a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5a95785a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"624dabb6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"459787c6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5f1ead36\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"7883f0ea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c4101e2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"116abe7d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5c1394a1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"37eb2524\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"6cd788fd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"125d5521\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"20614042\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf64071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"7066dffb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"373aa1fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"20187955\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"4ac68412\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"30f0ef28\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"4f1e1efd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"7f531a93\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"61abe0e6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"1283d7a3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"521c8e69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"19ba4fb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"5f038ee0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4127b39b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5584f4ef\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"30433c60\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6059df7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1c8afab9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"73e331e0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"3eb07e2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a1faf0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fe114e3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"71e9ab77\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"701be6a9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"56c1f198\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5947, 613, '_elementor_page_settings', 'a:0:{}'),
(5948, 613, '_elementor_controls_usage', 'a:8:{s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:4;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:1;s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:6:{s:10:\"icon_align\";i:1;s:7:\"divider\";i:1;s:13:\"divider_style\";i:1;s:14:\"divider_weight\";i:1;s:14:\"divider_height\";i:1;s:13:\"space_between\";i:1;}s:18:\"section_text_style\";a:4:{s:26:\"icon_typography_typography\";i:2;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:2;s:27:\"icon_typography_font_family\";i:1;}s:18:\"section_icon_style\";a:4:{s:9:\"icon_size\";i:1;s:11:\"text_indent\";i:1;s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:2;s:4:\"link\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:22;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:13:\"content_width\";i:19;s:14:\"flex_direction\";i:13;s:10:\"min_height\";i:2;s:20:\"flex_justify_content\";i:7;s:5:\"width\";i:12;s:9:\"flex_wrap\";i:5;s:8:\"flex_gap\";i:6;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:22;}s:18:\"section_background\";a:8:{s:21:\"background_background\";i:13;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;s:21:\"background_video_link\";i:1;s:16:\"background_color\";i:8;s:27:\"background_hover_background\";i:5;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:4;s:12:\"border_width\";i:4;s:12:\"border_color\";i:2;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:22;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:12;s:18:\"animation_duration\";i:8;}s:14:\"section_layout\";a:2:{s:7:\"padding\";i:16;s:11:\"css_classes\";i:10;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:4;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:6:{s:13:\"selected_icon\";i:6;s:10:\"title_text\";i:6;s:16:\"description_text\";i:6;s:10:\"title_size\";i:6;s:4:\"view\";i:2;s:4:\"link\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:5:{s:10:\"text_align\";i:4;s:18:\"title_bottom_space\";i:4;s:8:\"position\";i:2;s:15:\"position_mobile\";i:2;s:26:\"content_vertical_alignment\";i:2;}s:18:\"section_style_icon\";a:2:{s:9:\"icon_size\";i:2;s:12:\"icon_padding\";i:2;}s:21:\"section_style_content\";a:2:{s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_weight\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:6;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_size\";i:1;s:11:\"button_text\";i:1;}s:13:\"section_email\";a:5:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:14:\"email_reply_to\";i:1;s:13:\"form_metadata\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;s:31:\"label_typography_text_transform\";i:1;}s:19:\"section_field_style\";a:2:{s:22:\"field_background_color\";i:1;s:18:\"field_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(5956, 616, '_elementor_page_settings', 'a:0:{}'),
(5959, 617, '_wp_page_template', 'elementor_header_footer'),
(5960, 617, '_elementor_edit_mode', 'builder'),
(5961, 617, '_elementor_template_type', 'wp-page'),
(5962, 617, '_elementor_version', '3.33.0'),
(5963, 617, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5964, 617, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Secure Swipe Solutions LLC\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c59017d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Serving Greater Los Angeles & Beyond\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"c2abadd\"},{\"text\":\"Free ATM Placement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d6225bc\"},{\"text\":\"Zero Hassle\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"926b552\"}],\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_style\":\"double\",\"divider_weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":43,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"4568bf9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"divider_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\\n\\nWe install and manage modern ATMs in local businesses \\u2014 at no cost to you\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5966, 617, '_elementor_page_settings', 'a:0:{}'),
(5995, 620, '_elementor_page_settings', 'a:0:{}'),
(5997, 621, '_elementor_edit_mode', 'builder'),
(5998, 621, '_elementor_template_type', 'wp-page'),
(5999, 621, '_elementor_version', '3.33.0'),
(6000, 621, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6001, 621, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6027, 624, '_wp_page_template', 'elementor_header_footer'),
(6007, 622, '_wp_page_template', 'elementor_header_footer'),
(6008, 622, '_elementor_edit_mode', 'builder'),
(6009, 622, '_elementor_template_type', 'wp-page'),
(6010, 622, '_elementor_version', '3.33.0'),
(6011, 622, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6012, 622, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6054, 627, '_wp_page_template', 'elementor_header_footer'),
(6038, 625, '_wp_page_template', 'elementor_header_footer'),
(6039, 625, '_elementor_edit_mode', 'builder'),
(6040, 625, '_elementor_template_type', 'wp-page'),
(6041, 625, '_elementor_version', '3.33.0'),
(6042, 625, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6043, 625, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6045, 625, '_elementor_page_settings', 'a:0:{}'),
(6046, 626, '_wp_page_template', 'elementor_header_footer'),
(6047, 626, '_elementor_edit_mode', 'builder'),
(6048, 626, '_elementor_template_type', 'wp-page'),
(6049, 626, '_elementor_version', '3.33.0'),
(6050, 626, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6051, 626, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6014, 622, '_elementor_page_settings', 'a:0:{}'),
(6017, 623, '_wp_page_template', 'elementor_header_footer'),
(6018, 623, '_elementor_edit_mode', 'builder'),
(6019, 623, '_elementor_template_type', 'wp-page'),
(6020, 623, '_elementor_version', '3.33.0'),
(6021, 623, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6022, 623, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6024, 623, '_elementor_page_settings', 'a:0:{}'),
(6028, 624, '_elementor_edit_mode', 'builder'),
(6029, 624, '_elementor_template_type', 'wp-page'),
(6030, 624, '_elementor_version', '3.33.0'),
(6031, 624, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6032, 624, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation\",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6053, 626, '_elementor_page_settings', 'a:0:{}'),
(6055, 627, '_elementor_edit_mode', 'builder'),
(6056, 627, '_elementor_template_type', 'wp-page'),
(6057, 627, '_elementor_version', '3.33.0'),
(6058, 627, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6059, 627, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6065, 628, '_wp_page_template', 'elementor_header_footer'),
(6066, 628, '_elementor_edit_mode', 'builder'),
(6067, 628, '_elementor_template_type', 'wp-page'),
(6068, 628, '_elementor_version', '3.33.0'),
(6069, 628, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6070, 628, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6109, 633, '_wp_page_template', 'elementor_header_footer'),
(6093, 631, '_wp_page_template', 'elementor_header_footer'),
(6094, 631, '_elementor_edit_mode', 'builder'),
(6095, 631, '_elementor_template_type', 'wp-page'),
(6096, 631, '_elementor_version', '3.33.0'),
(6097, 631, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6098, 631, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the\",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6100, 631, '_elementor_page_settings', 'a:0:{}'),
(6101, 632, '_wp_page_template', 'elementor_header_footer'),
(6102, 632, '_elementor_edit_mode', 'builder'),
(6103, 632, '_elementor_template_type', 'wp-page'),
(6104, 632, '_elementor_version', '3.33.0'),
(6105, 632, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6106, 632, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the\",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6072, 628, '_elementor_page_settings', 'a:0:{}'),
(6074, 629, '_wp_page_template', 'elementor_header_footer'),
(6075, 629, '_elementor_edit_mode', 'builder'),
(6076, 629, '_elementor_template_type', 'wp-page'),
(6077, 629, '_elementor_version', '3.33.0'),
(6078, 629, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6079, 629, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None \",\"description_text\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6081, 629, '_elementor_page_settings', 'a:0:{}'),
(6084, 630, '_elementor_edit_mode', 'builder'),
(6085, 630, '_elementor_template_type', 'wp-page'),
(6086, 630, '_elementor_version', '3.33.0'),
(6087, 630, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6088, 630, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the\",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Business-Friendly Terms\",\"description_text\":\"\\nBusiness-Friendly Terms\\nNo long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"title_size\":\"h4\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Perfect Fit for Your Business\",\"description_text\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost\",\"title_size\":\"h4\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6108, 632, '_elementor_page_settings', 'a:0:{}'),
(6110, 633, '_elementor_edit_mode', 'builder'),
(6111, 633, '_elementor_template_type', 'wp-page'),
(6112, 633, '_elementor_version', '3.33.0'),
(6113, 633, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6114, 633, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6140, 636, '_wp_page_template', 'elementor_header_footer'),
(6120, 634, '_wp_page_template', 'elementor_header_footer'),
(6121, 634, '_elementor_edit_mode', 'builder'),
(6122, 634, '_elementor_template_type', 'wp-page'),
(6123, 634, '_elementor_version', '3.33.0'),
(6124, 634, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6125, 634, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6151, 637, '_wp_page_template', 'elementor_header_footer'),
(6152, 637, '_elementor_edit_mode', 'builder'),
(6153, 637, '_elementor_template_type', 'wp-page'),
(6154, 637, '_elementor_version', '3.33.0'),
(6155, 637, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6156, 637, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6158, 637, '_elementor_page_settings', 'a:0:{}'),
(6159, 638, '_wp_page_template', 'elementor_header_footer'),
(6160, 638, '_elementor_edit_mode', 'builder'),
(6161, 638, '_elementor_template_type', 'wp-page'),
(6162, 638, '_elementor_version', '3.33.0'),
(6163, 638, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6164, 638, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6127, 634, '_elementor_page_settings', 'a:0:{}'),
(6130, 635, '_wp_page_template', 'elementor_header_footer'),
(6131, 635, '_elementor_edit_mode', 'builder'),
(6132, 635, '_elementor_template_type', 'wp-page'),
(6133, 635, '_elementor_version', '3.33.0'),
(6134, 635, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6135, 635, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6137, 635, '_elementor_page_settings', 'a:0:{}'),
(6141, 636, '_elementor_edit_mode', 'builder'),
(6142, 636, '_elementor_template_type', 'wp-page'),
(6143, 636, '_elementor_version', '3.33.0'),
(6144, 636, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6145, 636, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd192eb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c8ae8d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6166, 638, '_elementor_page_settings', 'a:0:{}'),
(6178, 640, '_wp_page_template', 'elementor_header_footer'),
(6179, 640, '_elementor_edit_mode', 'builder'),
(6180, 640, '_elementor_template_type', 'wp-page'),
(6181, 640, '_elementor_version', '3.33.0'),
(6182, 640, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6183, 640, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise \",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized\\nservice. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6209, 643, '_wp_page_template', 'elementor_header_footer'),
(6210, 643, '_elementor_edit_mode', 'builder'),
(6211, 643, '_elementor_template_type', 'wp-page'),
(6212, 643, '_elementor_version', '3.33.0'),
(6213, 643, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6214, 643, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise \",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized\\nservice. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6216, 643, '_elementor_page_settings', 'a:0:{}'),
(6217, 644, '_wp_page_template', 'elementor_header_footer'),
(6218, 644, '_elementor_edit_mode', 'builder'),
(6219, 644, '_elementor_template_type', 'wp-page'),
(6220, 644, '_elementor_version', '3.33.0'),
(6221, 644, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6222, 644, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise \",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized\\nservice. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6185, 640, '_elementor_page_settings', 'a:0:{}'),
(6188, 641, '_wp_page_template', 'elementor_header_footer'),
(6189, 641, '_elementor_edit_mode', 'builder'),
(6190, 641, '_elementor_template_type', 'wp-page'),
(6191, 641, '_elementor_version', '3.33.0'),
(6192, 641, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6193, 641, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise \",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized\\nservice. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6195, 641, '_elementor_page_settings', 'a:0:{}'),
(6198, 642, '_wp_page_template', 'elementor_header_footer'),
(6199, 642, '_elementor_edit_mode', 'builder'),
(6200, 642, '_elementor_template_type', 'wp-page'),
(6201, 642, '_elementor_version', '3.33.0'),
(6202, 642, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6203, 642, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise \",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized\\nservice. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6224, 644, '_elementor_page_settings', 'a:0:{}'),
(6225, 645, '_wp_page_template', 'elementor_header_footer'),
(6226, 645, '_elementor_edit_mode', 'builder'),
(6227, 645, '_elementor_template_type', 'wp-page'),
(6228, 645, '_elementor_version', '3.33.0'),
(6229, 645, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6230, 645, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6243, 649, '_wp_page_template', 'elementor_header_footer'),
(6244, 649, '_elementor_edit_mode', 'builder'),
(6245, 649, '_elementor_template_type', 'wp-page'),
(6246, 649, '_elementor_version', '3.33.0'),
(6247, 649, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6248, 649, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6234, 646, '_wp_attached_file', '2025/11/expertise_14641472.svg'),
(6235, 646, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2732;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(6237, 647, '_wp_attached_file', '2025/11/setting_5250560.svg'),
(6238, 647, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2593;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(6240, 648, '_wp_attached_file', '2025/11/successful_15565605.svg'),
(6241, 648, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2770;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(6250, 649, '_elementor_page_settings', 'a:0:{}'),
(6251, 650, '_wp_page_template', 'elementor_header_footer'),
(6252, 650, '_elementor_edit_mode', 'builder'),
(6253, 650, '_elementor_template_type', 'wp-page'),
(6254, 650, '_elementor_version', '3.33.0'),
(6255, 650, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6256, 650, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6258, 650, '_elementor_page_settings', 'a:0:{}'),
(6259, 651, '_wp_page_template', 'elementor_header_footer'),
(6260, 651, '_elementor_edit_mode', 'builder'),
(6261, 651, '_elementor_template_type', 'wp-page'),
(6262, 651, '_elementor_version', '3.33.0'),
(6263, 651, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6264, 651, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6270, 652, '_wp_page_template', 'elementor_header_footer'),
(6271, 652, '_elementor_edit_mode', 'builder'),
(6272, 652, '_elementor_template_type', 'wp-page'),
(6273, 652, '_elementor_version', '3.33.0'),
(6274, 652, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6275, 652, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6316, 657, '_wp_page_template', 'elementor_header_footer'),
(6317, 657, '_elementor_edit_mode', 'builder'),
(6318, 657, '_elementor_template_type', 'wp-page'),
(6319, 657, '_elementor_version', '3.33.0'),
(6320, 657, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6321, 657, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6555, 681, '_elementor_page_settings', 'a:0:{}'),
(6556, 682, '_wp_page_template', 'elementor_header_footer'),
(6557, 682, '_elementor_edit_mode', 'builder'),
(6558, 682, '_elementor_template_type', 'wp-page'),
(6559, 682, '_elementor_version', '3.33.0'),
(6560, 682, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6561, 682, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\"},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6277, 652, '_elementor_page_settings', 'a:0:{}'),
(6280, 653, '_wp_page_template', 'elementor_header_footer'),
(6281, 653, '_elementor_edit_mode', 'builder'),
(6282, 653, '_elementor_template_type', 'wp-page'),
(6283, 653, '_elementor_version', '3.33.0'),
(6284, 653, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6285, 653, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6287, 653, '_elementor_page_settings', 'a:0:{}'),
(6290, 654, '_wp_page_template', 'elementor_header_footer'),
(6291, 654, '_elementor_edit_mode', 'builder'),
(6292, 654, '_elementor_template_type', 'wp-page'),
(6293, 654, '_elementor_version', '3.33.0'),
(6294, 654, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6295, 654, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6366, 662, '_wp_page_template', 'elementor_header_footer'),
(6346, 660, '_wp_page_template', 'elementor_header_footer'),
(6347, 660, '_elementor_edit_mode', 'builder'),
(6348, 660, '_elementor_template_type', 'wp-page'),
(6349, 660, '_elementor_version', '3.33.0'),
(6350, 660, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6351, 660, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6547, 680, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:410;s:6:\"height\";i:609;s:4:\"file\";s:56:\"2025/11/clean__modern_ATM_machines_-removebg-preview.png\";s:8:\"filesize\";i:326458;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"clean__modern_ATM_machines_-removebg-preview-202x300.png\";s:5:\"width\";i:202;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35419;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"clean__modern_ATM_machines_-removebg-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15671;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(6399, 665, '_wp_page_template', 'elementor_header_footer'),
(6334, 659, '_wp_page_template', 'elementor_header_footer'),
(6335, 659, '_elementor_edit_mode', 'builder'),
(6336, 659, '_elementor_template_type', 'wp-page'),
(6337, 659, '_elementor_version', '3.33.0'),
(6338, 659, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6339, 659, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6314, 656, '_wp_attached_file', '2025/11/clean-modern-ATM-machines.jpg'),
(6315, 656, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:466;s:6:\"height\";i:693;s:4:\"file\";s:37:\"2025/11/clean-modern-ATM-machines.jpg\";s:8:\"filesize\";i:46050;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"clean-modern-ATM-machines-202x300.jpg\";s:5:\"width\";i:202;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11351;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"clean-modern-ATM-machines-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5356;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(6323, 657, '_elementor_page_settings', 'a:0:{}'),
(6325, 658, '_wp_page_template', 'elementor_header_footer'),
(6326, 658, '_elementor_edit_mode', 'builder'),
(6327, 658, '_elementor_template_type', 'wp-page'),
(6328, 658, '_elementor_version', '3.33.0'),
(6329, 658, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6330, 658, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6332, 658, '_elementor_page_settings', 'a:0:{}'),
(6400, 665, '_elementor_edit_mode', 'builder'),
(6379, 663, '_wp_page_template', 'elementor_header_footer'),
(6380, 663, '_elementor_edit_mode', 'builder'),
(6381, 663, '_elementor_template_type', 'wp-page'),
(6382, 663, '_elementor_version', '3.33.0'),
(6383, 663, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6384, 663, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6353, 660, '_elementor_page_settings', 'a:0:{}'),
(6356, 661, '_wp_page_template', 'elementor_header_footer'),
(6357, 661, '_elementor_edit_mode', 'builder'),
(6358, 661, '_elementor_template_type', 'wp-page'),
(6359, 661, '_elementor_version', '3.33.0'),
(6360, 661, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6361, 661, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6363, 661, '_elementor_page_settings', 'a:0:{}'),
(6367, 662, '_elementor_edit_mode', 'builder'),
(6368, 662, '_elementor_template_type', 'wp-page'),
(6369, 662, '_elementor_version', '3.33.0'),
(6370, 662, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6371, 662, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6434, 669, '_wp_page_template', 'elementor_header_footer'),
(6414, 667, '_wp_page_template', 'elementor_header_footer'),
(6415, 667, '_elementor_edit_mode', 'builder'),
(6416, 667, '_elementor_template_type', 'wp-page'),
(6417, 667, '_elementor_version', '3.33.0'),
(6418, 667, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6419, 667, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6386, 663, '_elementor_page_settings', 'a:0:{}'),
(6389, 664, '_wp_page_template', 'elementor_header_footer'),
(6390, 664, '_elementor_edit_mode', 'builder'),
(6391, 664, '_elementor_template_type', 'wp-page'),
(6392, 664, '_elementor_version', '3.33.0'),
(6393, 664, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6394, 664, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6396, 664, '_elementor_page_settings', 'a:0:{}'),
(6401, 665, '_elementor_template_type', 'wp-page'),
(6402, 665, '_elementor_version', '3.33.0'),
(6403, 665, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6404, 665, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6469, 673, '_wp_page_template', 'elementor_header_footer'),
(6449, 671, '_wp_page_template', 'elementor_header_footer'),
(6450, 671, '_elementor_edit_mode', 'builder'),
(6451, 671, '_elementor_template_type', 'wp-page'),
(6452, 671, '_elementor_version', '3.33.0'),
(6453, 671, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6454, 671, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.jpg\",\"id\":666,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6412, 666, '_wp_attached_file', '2025/11/atm.jpg'),
(6413, 666, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:15:\"2025/11/atm.jpg\";s:8:\"filesize\";i:62044;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"atm-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7256;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"atm-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41827;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"atm-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4890;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"atm-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27809;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(6421, 667, '_elementor_page_settings', 'a:0:{}'),
(6424, 668, '_wp_page_template', 'elementor_header_footer'),
(6425, 668, '_elementor_edit_mode', 'builder'),
(6426, 668, '_elementor_template_type', 'wp-page'),
(6427, 668, '_elementor_version', '3.33.0'),
(6428, 668, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6429, 668, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6431, 668, '_elementor_page_settings', 'a:0:{}'),
(6435, 669, '_elementor_edit_mode', 'builder'),
(6436, 669, '_elementor_template_type', 'wp-page'),
(6437, 669, '_elementor_version', '3.33.0'),
(6438, 669, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6439, 669, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.jpg\",\"id\":666,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6482, 674, '_wp_page_template', 'elementor_header_footer'),
(6483, 674, '_elementor_edit_mode', 'builder'),
(6484, 674, '_elementor_template_type', 'wp-page'),
(6485, 674, '_elementor_version', '3.33.0'),
(6486, 674, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6487, 674, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6447, 670, '_wp_attached_file', '2025/11/atm-1.jpg'),
(6448, 670, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:17:\"2025/11/atm-1.jpg\";s:8:\"filesize\";i:49988;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"atm-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6649;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"atm-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37107;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"atm-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4375;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"atm-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24491;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(6456, 671, '_elementor_page_settings', 'a:0:{}'),
(6459, 672, '_wp_page_template', 'elementor_header_footer'),
(6460, 672, '_elementor_edit_mode', 'builder'),
(6461, 672, '_elementor_template_type', 'wp-page'),
(6462, 672, '_elementor_version', '3.33.0'),
(6463, 672, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6464, 672, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.jpg\",\"id\":666,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6466, 672, '_elementor_page_settings', 'a:0:{}'),
(6470, 673, '_elementor_edit_mode', 'builder'),
(6471, 673, '_elementor_template_type', 'wp-page'),
(6472, 673, '_elementor_version', '3.33.0'),
(6473, 673, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6474, 673, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6515, 677, '_wp_page_template', 'elementor_header_footer'),
(6516, 677, '_elementor_edit_mode', 'builder'),
(6517, 677, '_elementor_template_type', 'wp-page'),
(6518, 677, '_elementor_version', '3.33.0'),
(6519, 677, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6520, 677, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6489, 674, '_elementor_page_settings', 'a:0:{}'),
(6492, 675, '_wp_page_template', 'elementor_header_footer'),
(6493, 675, '_elementor_edit_mode', 'builder'),
(6494, 675, '_elementor_template_type', 'wp-page'),
(6495, 675, '_elementor_version', '3.33.0'),
(6496, 675, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6497, 675, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}]},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6499, 675, '_elementor_page_settings', 'a:0:{}'),
(6502, 676, '_wp_page_template', 'elementor_header_footer'),
(6503, 676, '_elementor_edit_mode', 'builder'),
(6504, 676, '_elementor_template_type', 'wp-page'),
(6505, 676, '_elementor_version', '3.33.0'),
(6506, 676, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6507, 676, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6548, 681, '_wp_page_template', 'elementor_header_footer'),
(6549, 681, '_elementor_edit_mode', 'builder'),
(6550, 681, '_elementor_template_type', 'wp-page'),
(6551, 681, '_elementor_version', '3.33.0'),
(6552, 681, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6553, 681, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\"},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6546, 680, '_wp_attached_file', '2025/11/clean__modern_ATM_machines_-removebg-preview.png'),
(6522, 677, '_elementor_page_settings', 'a:0:{}'),
(6525, 678, '_wp_page_template', 'elementor_header_footer'),
(6526, 678, '_elementor_edit_mode', 'builder'),
(6527, 678, '_elementor_template_type', 'wp-page'),
(6528, 678, '_elementor_version', '3.33.0'),
(6529, 678, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6530, 678, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6532, 678, '_elementor_page_settings', 'a:0:{}'),
(6535, 679, '_wp_page_template', 'elementor_header_footer'),
(6536, 679, '_elementor_edit_mode', 'builder'),
(6537, 679, '_elementor_template_type', 'wp-page'),
(6538, 679, '_elementor_version', '3.33.0'),
(6539, 679, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6540, 679, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\"},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean-modern-ATM-machines.jpg\",\"id\":656,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6563, 682, '_elementor_page_settings', 'a:0:{}'),
(6564, 683, '_wp_page_template', 'elementor_header_footer'),
(6565, 683, '_elementor_edit_mode', 'builder'),
(6566, 683, '_elementor_template_type', 'wp-page'),
(6567, 683, '_elementor_version', '3.33.0'),
(6568, 683, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6569, 683, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6575, 684, '_wp_page_template', 'elementor_header_footer'),
(6576, 684, '_elementor_edit_mode', 'builder'),
(6577, 684, '_elementor_template_type', 'wp-page'),
(6578, 684, '_elementor_version', '3.33.0'),
(6579, 684, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6580, 684, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6608, 687, '_wp_page_template', 'elementor_header_footer'),
(6609, 687, '_elementor_edit_mode', 'builder'),
(6610, 687, '_elementor_template_type', 'wp-page'),
(6611, 687, '_elementor_version', '3.33.0'),
(6612, 687, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6613, 687, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[{\"id\":\"38586bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6947, 719, '_elementor_page_settings', 'a:0:{}'),
(6948, 720, '_wp_page_template', 'elementor_header_footer'),
(6949, 720, '_elementor_edit_mode', 'builder'),
(6950, 720, '_elementor_template_type', 'wp-page'),
(6951, 720, '_elementor_version', '3.33.0'),
(6952, 720, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6953, 720, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6582, 684, '_elementor_page_settings', 'a:0:{}'),
(6585, 685, '_wp_page_template', 'elementor_header_footer'),
(6586, 685, '_elementor_edit_mode', 'builder'),
(6587, 685, '_elementor_template_type', 'wp-page'),
(6588, 685, '_elementor_version', '3.33.0'),
(6589, 685, '_elementor_pro_version', '3.25.4'),
(6590, 685, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6592, 685, '_elementor_page_settings', 'a:0:{}'),
(6595, 686, '_wp_page_template', 'elementor_header_footer'),
(6596, 686, '_elementor_edit_mode', 'builder'),
(6597, 686, '_elementor_template_type', 'wp-page'),
(6598, 686, '_elementor_version', '3.33.0'),
(6599, 686, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6600, 686, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[{\"id\":\"38586bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6663, 693, '_wp_page_template', 'elementor_header_footer'),
(6643, 691, '_wp_page_template', 'elementor_header_footer'),
(6644, 691, '_elementor_edit_mode', 'builder'),
(6645, 691, '_elementor_template_type', 'wp-page'),
(6646, 691, '_elementor_version', '3.33.0'),
(6647, 691, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6648, 691, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6615, 687, '_elementor_page_settings', 'a:0:{}'),
(6618, 688, '_wp_page_template', 'elementor_header_footer'),
(6619, 688, '_elementor_edit_mode', 'builder'),
(6620, 688, '_elementor_template_type', 'wp-page'),
(6621, 688, '_elementor_version', '3.33.0'),
(6622, 688, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6623, 688, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[{\"id\":\"38586bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}]},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6625, 688, '_elementor_page_settings', 'a:0:{}'),
(6628, 689, '_wp_page_template', 'elementor_header_footer'),
(6629, 689, '_elementor_edit_mode', 'builder'),
(6630, 689, '_elementor_template_type', 'wp-page'),
(6631, 689, '_elementor_version', '3.33.0'),
(6632, 689, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6633, 689, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6698, 697, '_wp_page_template', 'elementor_header_footer'),
(6678, 695, '_wp_page_template', 'elementor_header_footer'),
(6679, 695, '_elementor_edit_mode', 'builder'),
(6680, 695, '_elementor_template_type', 'wp-page'),
(6681, 695, '_elementor_version', '3.33.0'),
(6682, 695, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6683, 695, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6810, 707, '_wp_page_template', 'elementor_header_footer'),
(6641, 690, '_wp_attached_file', '2025/11/Why-Choose.jpeg'),
(6642, 690, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:23:\"2025/11/Why-Choose.jpeg\";s:8:\"filesize\";i:18258;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Why-Choose-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4854;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Why-Choose-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3046;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Why-Choose-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20570;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(6650, 691, '_elementor_page_settings', 'a:0:{}'),
(6653, 692, '_wp_page_template', 'elementor_header_footer'),
(6654, 692, '_elementor_edit_mode', 'builder'),
(6655, 692, '_elementor_template_type', 'wp-page'),
(6656, 692, '_elementor_version', '3.33.0'),
(6657, 692, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6658, 692, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6660, 692, '_elementor_page_settings', 'a:0:{}'),
(6664, 693, '_elementor_edit_mode', 'builder'),
(6665, 693, '_elementor_template_type', 'wp-page'),
(6666, 693, '_elementor_version', '3.33.0'),
(6667, 693, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6668, 693, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6731, 700, '_wp_page_template', 'elementor_header_footer'),
(6711, 698, '_wp_page_template', 'elementor_header_footer'),
(6712, 698, '_elementor_edit_mode', 'builder'),
(6713, 698, '_elementor_template_type', 'wp-page'),
(6714, 698, '_elementor_version', '3.33.0'),
(6715, 698, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6716, 698, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-75.jpg\",\"id\":694,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6676, 694, '_wp_attached_file', '2025/11/New-Project-75.jpg'),
(6677, 694, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:26:\"2025/11/New-Project-75.jpg\";s:8:\"filesize\";i:17384;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"New-Project-75-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4030;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"New-Project-75-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2659;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"New-Project-75-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14791;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(6685, 695, '_elementor_page_settings', 'a:0:{}'),
(6688, 696, '_wp_page_template', 'elementor_header_footer'),
(6689, 696, '_elementor_edit_mode', 'builder'),
(6690, 696, '_elementor_template_type', 'wp-page'),
(6691, 696, '_elementor_version', '3.33.0'),
(6692, 696, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6693, 696, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6695, 696, '_elementor_page_settings', 'a:0:{}'),
(6699, 697, '_elementor_edit_mode', 'builder'),
(6700, 697, '_elementor_template_type', 'wp-page'),
(6701, 697, '_elementor_version', '3.33.0'),
(6702, 697, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6703, 697, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-75.jpg\",\"id\":694,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6797, 706, '_wp_page_template', 'elementor_header_footer'),
(6764, 703, '_wp_page_template', 'elementor_header_footer'),
(6744, 701, '_wp_page_template', 'elementor_header_footer'),
(6745, 701, '_elementor_edit_mode', 'builder'),
(6746, 701, '_elementor_template_type', 'wp-page'),
(6747, 701, '_elementor_version', '3.33.0'),
(6748, 701, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6749, 701, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-75.jpg\",\"id\":694,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6718, 698, '_elementor_page_settings', 'a:0:{}'),
(6721, 699, '_wp_page_template', 'elementor_header_footer'),
(6722, 699, '_elementor_edit_mode', 'builder'),
(6723, 699, '_elementor_template_type', 'wp-page'),
(6724, 699, '_elementor_version', '3.33.0'),
(6725, 699, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6726, 699, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-75.jpg\",\"id\":694,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6728, 699, '_elementor_page_settings', 'a:0:{}'),
(6732, 700, '_elementor_edit_mode', 'builder'),
(6733, 700, '_elementor_template_type', 'wp-page'),
(6734, 700, '_elementor_version', '3.33.0'),
(6735, 700, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6736, 700, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-75.jpg\",\"id\":694,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6777, 704, '_wp_page_template', 'elementor_header_footer'),
(6778, 704, '_elementor_edit_mode', 'builder'),
(6779, 704, '_elementor_template_type', 'wp-page'),
(6780, 704, '_elementor_version', '3.33.0'),
(6781, 704, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6782, 704, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-75.jpg\",\"id\":694,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6751, 701, '_elementor_page_settings', 'a:0:{}'),
(6754, 702, '_wp_page_template', 'elementor_header_footer'),
(6755, 702, '_elementor_edit_mode', 'builder'),
(6756, 702, '_elementor_template_type', 'wp-page'),
(6757, 702, '_elementor_version', '3.33.0'),
(6758, 702, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6759, 702, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-75.jpg\",\"id\":694,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6761, 702, '_elementor_page_settings', 'a:0:{}'),
(6765, 703, '_elementor_edit_mode', 'builder'),
(6766, 703, '_elementor_template_type', 'wp-page'),
(6767, 703, '_elementor_version', '3.33.0'),
(6768, 703, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6769, 703, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-75.jpg\",\"id\":694,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6811, 707, '_elementor_edit_mode', 'builder'),
(6812, 707, '_elementor_template_type', 'wp-page'),
(6813, 707, '_elementor_version', '3.33.0'),
(6814, 707, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6815, 707, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6784, 704, '_elementor_page_settings', 'a:0:{}'),
(6787, 705, '_wp_page_template', 'elementor_header_footer'),
(6788, 705, '_elementor_edit_mode', 'builder'),
(6789, 705, '_elementor_template_type', 'wp-page'),
(6790, 705, '_elementor_version', '3.33.0'),
(6791, 705, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6792, 705, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-75.jpg\",\"id\":694,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6794, 705, '_elementor_page_settings', 'a:0:{}'),
(6798, 706, '_elementor_edit_mode', 'builder'),
(6799, 706, '_elementor_template_type', 'wp-page'),
(6800, 706, '_elementor_version', '3.33.0'),
(6801, 706, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6802, 706, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6863, 712, '_wp_page_template', 'elementor_header_footer'),
(6843, 710, '_wp_page_template', 'elementor_header_footer'),
(6844, 710, '_elementor_edit_mode', 'builder'),
(6845, 710, '_elementor_template_type', 'wp-page'),
(6846, 710, '_elementor_version', '3.33.0'),
(6847, 710, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6848, 710, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6817, 707, '_elementor_page_settings', 'a:0:{}'),
(6820, 708, '_wp_page_template', 'elementor_header_footer'),
(6821, 708, '_elementor_edit_mode', 'builder'),
(6822, 708, '_elementor_template_type', 'wp-page'),
(6823, 708, '_elementor_version', '3.33.0'),
(6824, 708, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6825, 708, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}]},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6827, 708, '_elementor_page_settings', 'a:0:{}'),
(6830, 709, '_wp_page_template', 'elementor_header_footer'),
(6831, 709, '_elementor_edit_mode', 'builder'),
(6832, 709, '_elementor_template_type', 'wp-page'),
(6833, 709, '_elementor_version', '3.33.0'),
(6834, 709, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6835, 709, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6896, 715, '_wp_page_template', 'elementor_header_footer'),
(6876, 713, '_wp_page_template', 'elementor_header_footer'),
(6877, 713, '_elementor_edit_mode', 'builder'),
(6878, 713, '_elementor_template_type', 'wp-page'),
(6879, 713, '_elementor_version', '3.33.0'),
(6880, 713, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6881, 713, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6850, 710, '_elementor_page_settings', 'a:0:{}'),
(6853, 711, '_wp_page_template', 'elementor_header_footer'),
(6854, 711, '_elementor_edit_mode', 'builder'),
(6855, 711, '_elementor_template_type', 'wp-page'),
(6856, 711, '_elementor_version', '3.33.0'),
(6857, 711, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6858, 711, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6860, 711, '_elementor_page_settings', 'a:0:{}'),
(6864, 712, '_elementor_edit_mode', 'builder'),
(6865, 712, '_elementor_template_type', 'wp-page'),
(6866, 712, '_elementor_version', '3.33.0'),
(6867, 712, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6868, 712, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6929, 718, '_wp_page_template', 'elementor_header_footer'),
(6909, 716, '_wp_page_template', 'elementor_header_footer'),
(6910, 716, '_elementor_edit_mode', 'builder'),
(6911, 716, '_elementor_template_type', 'wp-page'),
(6912, 716, '_elementor_version', '3.33.0'),
(6913, 716, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6914, 716, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6883, 713, '_elementor_page_settings', 'a:0:{}'),
(6886, 714, '_wp_page_template', 'elementor_header_footer'),
(6887, 714, '_elementor_edit_mode', 'builder'),
(6888, 714, '_elementor_template_type', 'wp-page'),
(6889, 714, '_elementor_version', '3.33.0'),
(6890, 714, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6891, 714, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6893, 714, '_elementor_page_settings', 'a:0:{}'),
(6897, 715, '_elementor_edit_mode', 'builder'),
(6898, 715, '_elementor_template_type', 'wp-page'),
(6899, 715, '_elementor_version', '3.33.0'),
(6900, 715, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6901, 715, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6940, 719, '_wp_page_template', 'elementor_header_footer'),
(6941, 719, '_elementor_edit_mode', 'builder'),
(6942, 719, '_elementor_template_type', 'wp-page'),
(6943, 719, '_elementor_version', '3.33.0'),
(6944, 719, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6945, 719, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6916, 716, '_elementor_page_settings', 'a:0:{}'),
(6919, 717, '_wp_page_template', 'elementor_header_footer'),
(6920, 717, '_elementor_edit_mode', 'builder'),
(6921, 717, '_elementor_template_type', 'wp-page'),
(6922, 717, '_elementor_version', '3.33.0'),
(6923, 717, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6924, 717, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6926, 717, '_elementor_page_settings', 'a:0:{}'),
(6930, 718, '_elementor_edit_mode', 'builder'),
(6931, 718, '_elementor_template_type', 'wp-page'),
(6932, 718, '_elementor_version', '3.33.0'),
(6933, 718, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6934, 718, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties.If a location underperforms, we simply\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6955, 720, '_elementor_page_settings', 'a:0:{}'),
(6956, 721, '_wp_page_template', 'elementor_header_footer'),
(6957, 721, '_elementor_edit_mode', 'builder'),
(6958, 721, '_elementor_template_type', 'wp-page'),
(6959, 721, '_elementor_version', '3.33.0'),
(6960, 721, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6961, 721, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7763, 808, '_wp_page_template', 'elementor_header_footer'),
(7764, 808, '_elementor_edit_mode', 'builder'),
(7765, 808, '_elementor_template_type', 'wp-page'),
(7766, 808, '_elementor_version', '3.33.0'),
(7767, 808, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7768, 808, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8154, 849, '_elementor_version', '3.33.0'),
(7793, 811, '_wp_page_template', 'elementor_header_footer'),
(7794, 811, '_elementor_edit_mode', 'builder'),
(7795, 811, '_elementor_template_type', 'wp-page'),
(7796, 811, '_elementor_version', '3.33.0'),
(7797, 811, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7798, 811, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7985, 831, '_elementor_page_settings', 'a:0:{}'),
(7986, 832, '_wp_page_template', 'elementor_header_footer'),
(7987, 832, '_elementor_edit_mode', 'builder'),
(7988, 832, '_elementor_template_type', 'wp-page'),
(7989, 832, '_elementor_version', '3.33.0'),
(7990, 832, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7991, 832, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6974, 722, '_elementor_page_settings', 'a:0:{}'),
(6977, 723, '_wp_page_template', 'elementor_header_footer'),
(6979, 723, '_elementor_edit_mode', 'builder'),
(6980, 723, '_elementor_template_type', 'wp-page'),
(6981, 723, '_elementor_version', '3.33.0'),
(6982, 723, '_elementor_pro_version', '3.25.4'),
(6983, 723, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all setup costs\\u2014no rental fees, no installation charges. Just say yes, and we\\u2019ll handle the rest.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6984, 723, '_elementor_page_settings', 'a:0:{}'),
(6987, 724, '_wp_page_template', 'elementor_header_footer'),
(6989, 724, '_elementor_edit_mode', 'builder'),
(6990, 724, '_elementor_template_type', 'wp-page'),
(6991, 724, '_elementor_version', '3.33.0'),
(6992, 724, '_elementor_pro_version', '3.25.4'),
(6993, 724, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7013, 726, '_elementor_page_settings', 'a:0:{}'),
(7016, 727, '_elementor_edit_mode', 'builder'),
(7017, 727, '_elementor_template_type', 'wp-page'),
(7018, 727, '_elementor_version', '3.33.0'),
(7019, 727, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7020, 727, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service. \\n\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7023, 728, '_wp_page_template', 'elementor_header_footer'),
(7025, 728, '_elementor_edit_mode', 'builder'),
(7026, 728, '_elementor_template_type', 'wp-page'),
(7027, 728, '_elementor_version', '3.33.0'),
(7028, 728, '_elementor_pro_version', '3.25.4'),
(7029, 728, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service. \\n\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7030, 728, '_elementor_page_settings', 'a:0:{}'),
(7031, 729, '_wp_page_template', 'elementor_header_footer'),
(7033, 729, '_elementor_edit_mode', 'builder'),
(7034, 729, '_elementor_template_type', 'wp-page'),
(7035, 729, '_elementor_version', '3.33.0'),
(7036, 729, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7037, 729, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service. \\n\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business-Friendly Terms\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term lock-ins. If a location underperforms, we won\\u2019t tie you down.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7038, 729, '_elementor_page_settings', 'a:0:{}'),
(7039, 730, '_wp_page_template', 'elementor_header_footer'),
(7041, 730, '_elementor_edit_mode', 'builder'),
(7042, 730, '_elementor_template_type', 'wp-page'),
(7043, 730, '_elementor_version', '3.33.0'),
(7044, 730, '_elementor_pro_version', '3.25.4'),
(7045, 730, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service. \\n\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8610, 895, '_wp_page_template', 'elementor_header_footer'),
(7048, 731, '_wp_page_template', 'elementor_header_footer'),
(7050, 731, '_elementor_edit_mode', 'builder'),
(7051, 731, '_elementor_template_type', 'wp-page'),
(7052, 731, '_elementor_version', '3.33.0'),
(7053, 731, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7054, 731, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service. \\n\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7055, 731, '_elementor_page_settings', 'a:0:{}'),
(7056, 732, '_wp_page_template', 'elementor_header_footer'),
(7058, 732, '_elementor_edit_mode', 'builder'),
(7059, 732, '_elementor_template_type', 'wp-page'),
(7060, 732, '_elementor_version', '3.33.0'),
(7061, 732, '_elementor_pro_version', '3.25.4'),
(7062, 732, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service. \\n\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perfect Fit for Your Business\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7063, 732, '_elementor_page_settings', 'a:0:{}'),
(7064, 733, '_wp_page_template', 'elementor_header_footer'),
(7066, 733, '_elementor_edit_mode', 'builder'),
(7067, 733, '_elementor_template_type', 'wp-page'),
(7068, 733, '_elementor_version', '3.33.0'),
(7069, 733, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7070, 733, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service. \\n\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-tra\\u01afic locations looking to increase revenue e\\u01afortlessly.\\n\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8577, 892, '_wp_page_template', 'elementor_header_footer'),
(8557, 890, '_wp_page_template', 'elementor_header_footer'),
(8559, 890, '_elementor_edit_mode', 'builder'),
(8560, 890, '_elementor_template_type', 'wp-page'),
(8561, 890, '_elementor_version', '3.33.0'),
(8562, 890, '_elementor_pro_version', '3.25.4'),
(8563, 890, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service. \\n\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-tra\\u01afic locations looking to increase revenue e\\u01afortlessly.\\n\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8590, 893, '_wp_page_template', 'elementor_header_footer'),
(8592, 893, '_elementor_edit_mode', 'builder'),
(8593, 893, '_elementor_template_type', 'wp-page'),
(8594, 893, '_elementor_version', '3.33.0'),
(8595, 893, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8596, 893, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8658, 900, '_wp_page_template', 'elementor_header_footer'),
(8726, 907, '_wp_page_template', 'elementor_header_footer'),
(8766, 911, '_elementor_page_settings', 'a:0:{}'),
(8767, 912, '_wp_page_template', 'elementor_header_footer'),
(8769, 912, '_elementor_edit_mode', 'builder'),
(8770, 912, '_elementor_template_type', 'wp-page'),
(8771, 912, '_elementor_version', '3.33.0'),
(8772, 912, '_elementor_pro_version', '3.25.4'),
(8773, 912, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7107, 738, '_wp_page_template', 'elementor_header_footer'),
(7086, 735, '_wp_attached_file', '2025/11/privacy_18610789.svg'),
(7087, 735, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1461;s:5:\"width\";i:510;s:6:\"height\";i:510;}'),
(7096, 736, '_elementor_page_settings', 'a:0:{}'),
(7109, 738, '_elementor_edit_mode', 'builder'),
(7110, 738, '_elementor_template_type', 'wp-page'),
(7111, 738, '_elementor_version', '3.33.0'),
(7112, 738, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7113, 738, '_elementor_data', '[{\"id\":\"e7cdc50\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"93a2939\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eeb8e1f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2452a0b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2161e3d\"}]},\"elements\":[{\"id\":\"a6967d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b7c393\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bafde60\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79871db\"}],\"pp_display_conditions\":[{\"_id\":\"c249100\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3e6727b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"1efafb6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"081ab36\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"90dfaab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80a00a3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"144bbc0\"}],\"pp_display_conditions\":[{\"_id\":\"e2d192e\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca802c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0e0f082\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a048c2e\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c5a45d3\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d45c5c3\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Secure Swipe Solutions\",\"description_text\":\"provides reliable ATM placement services that help small and\\nmedium businesses save time, boost cashflow, and delivers an enhanced customer\\nexperience (without the headaches or hidden fees). \",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/privacy_18610789.svg\",\"id\":735},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(7098, 737, '_wp_page_template', 'elementor_header_footer'),
(7100, 737, '_elementor_edit_mode', 'builder'),
(7101, 737, '_elementor_template_type', 'wp-page'),
(7102, 737, '_elementor_version', '3.33.0'),
(7103, 737, '_elementor_pro_version', '3.25.4'),
(7104, 737, '_elementor_data', '[{\"id\":\"e7cdc50\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"93a2939\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eeb8e1f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2452a0b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2161e3d\"}]},\"elements\":[{\"id\":\"a6967d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b7c393\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bafde60\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79871db\"}],\"pp_display_conditions\":[{\"_id\":\"c249100\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3e6727b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-27.jpg\",\"id\":423,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"1efafb6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"081ab36\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"90dfaab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80a00a3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"144bbc0\"}],\"pp_display_conditions\":[{\"_id\":\"e2d192e\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca802c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ed2a46\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\'re Local.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"997f880\"},{\"text\":\"We\\u2019re Hands-On.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"6e9eca4\"},{\"text\":\"We\\u2019re Invested in Your Success.\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/badge_16596723.svg\",\"id\":385},\"library\":\"svg\"},\"_id\":\"89ea2e6\"}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"cb047b1\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"89b3b17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience \\u2014 without the red tape.<\\/p><p>When you partner with us, you\\u2019re not just getting a machine. You\\u2019re gaining a responsive, service-driven team that values your growth.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"09f23e4\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7105, 737, '_elementor_page_settings', 'a:0:{}'),
(8087, 843, '_wp_page_template', 'elementor_header_footer'),
(8071, 841, '_wp_page_template', 'elementor_header_footer'),
(8073, 841, '_elementor_edit_mode', 'builder'),
(8074, 841, '_elementor_template_type', 'wp-page'),
(8075, 841, '_elementor_version', '3.33.0'),
(8076, 841, '_elementor_pro_version', '3.25.4'),
(8077, 841, '_elementor_data', '[{\"id\":\"e7cdc50\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"93a2939\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eeb8e1f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2452a0b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2161e3d\"}]},\"elements\":[{\"id\":\"a6967d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b7c393\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bafde60\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79871db\"}],\"pp_display_conditions\":[{\"_id\":\"c249100\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3e6727b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"1efafb6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"081ab36\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"90dfaab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80a00a3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"144bbc0\"}],\"pp_display_conditions\":[{\"_id\":\"e2d192e\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca802c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0e0f082\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a048c2e\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c5a45d3\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d45c5c3\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Secure Swipe Solutions\",\"description_text\":\"provides reliable ATM placement services that help small and\\nmedium businesses save time, boost cashflow, and delivers an enhanced customer\\nexperience (without the headaches or hidden fees). \",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/privacy_18610789.svg\",\"id\":735},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(8069, 840, '_wp_attached_file', '2025/11/atm-2.jpg'),
(8070, 840, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:17:\"2025/11/atm-2.jpg\";s:8:\"filesize\";i:66952;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"atm-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16179;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"atm-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6400;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"atm-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60362;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(8078, 841, '_elementor_page_settings', 'a:0:{}'),
(8079, 842, '_wp_page_template', 'elementor_header_footer'),
(8081, 842, '_elementor_edit_mode', 'builder'),
(8082, 842, '_elementor_template_type', 'wp-page'),
(8083, 842, '_elementor_version', '3.33.0'),
(8084, 842, '_elementor_pro_version', '3.25.4'),
(8085, 842, '_elementor_data', '[{\"id\":\"e7cdc50\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"93a2939\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eeb8e1f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2452a0b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2161e3d\"}]},\"elements\":[{\"id\":\"a6967d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b7c393\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bafde60\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79871db\"}],\"pp_display_conditions\":[{\"_id\":\"c249100\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3e6727b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"1efafb6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"081ab36\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"90dfaab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80a00a3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"144bbc0\"}],\"pp_display_conditions\":[{\"_id\":\"e2d192e\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca802c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0e0f082\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a048c2e\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c5a45d3\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d45c5c3\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Secure Swipe Solutions\",\"description_text\":\"provides reliable ATM placement services that help small and\\nmedium businesses save time, boost cashflow, and delivers an enhanced customer\\nexperience (without the headaches or hidden fees). \",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/privacy_18610789.svg\",\"id\":735},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(7119, 739, '_edit_last', '1'),
(7120, 739, '_edit_lock', '1764063201:1'),
(7121, 739, '_wp_page_template', 'elementor_header_footer'),
(7128, 739, 'ast-featured-img', 'disabled'),
(7124, 739, 'site-sidebar-layout', 'no-sidebar'),
(7125, 739, 'ast-site-content-layout', 'full-width-container'),
(7126, 739, 'site-content-style', 'default'),
(7127, 739, 'site-sidebar-style', 'default'),
(7129, 739, 'astra-migrate-meta-layouts', 'set'),
(7130, 739, 'ast-breadcrumbs-content', 'disabled'),
(7131, 739, 'theme-transparent-header-meta', 'default'),
(7132, 741, '_menu_item_type', 'post_type'),
(7133, 741, '_menu_item_menu_item_parent', '0'),
(7134, 741, '_menu_item_object_id', '739'),
(7135, 741, '_menu_item_object', 'page'),
(7136, 741, '_menu_item_target', ''),
(7137, 741, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(7138, 741, '_menu_item_xfn', ''),
(7139, 741, '_menu_item_url', ''),
(7144, 32, '_wp_old_date', '2025-11-15'),
(7141, 31, '_wp_old_date', '2025-11-15'),
(7142, 34, '_wp_old_date', '2025-11-15'),
(7143, 35, '_wp_old_date', '2025-11-15'),
(7146, 739, '_elementor_edit_mode', 'builder'),
(7147, 739, '_astra_content_layout_flag', 'disabled'),
(7148, 739, 'ast-title-bar-display', 'disabled'),
(7149, 739, '_elementor_template_type', 'wp-page'),
(7150, 739, '_elementor_version', '3.33.0'),
(7151, 739, '_elementor_pro_version', '3.25.4'),
(7195, 739, '_elementor_data', '[{\"id\":\"9e899bf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bfb3f32\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"246b180\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f17ea2d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d8a77a1\"}]},\"elements\":[{\"id\":\"451bf63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0554458\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"992e6db\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f0c262d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cca9254\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86b910f\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f03e2ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a61d7c7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Do I need to pay anything for the ATM? \",\"_id\":\"482adc5\",\"faq_answer\":\"No. Installation, delivery, programming, and setup are 100% free.\"},{\"tab_title\":\"Who loads the machine with cash? \",\"_id\":\"4380af5\",\"faq_answer\":\"We handle all cash loading, servicing, and replenishment \\u2014 you do nothing.\"},{\"tab_title\":\"Will the ATM take up a lot of space? \",\"_id\":\"c35cff9\",\"faq_answer\":\"No. Modern ATMs have a small footprint and can fit in tight spaces or unused corners. \"},{\"tab_title\":\"Do I have to sign a long-term contract? \",\"faq_answer\":\"We use a straightforward placement agreement, but our terms are flexible. If the machine doesn\\u2019t perform well, we relocate it \\u2014 simple and stress-free. \\n\",\"_id\":\"8c2dd3d\"},{\"tab_title\":\"How do I contact you if I need help? \",\"faq_answer\":\"You get direct phone\\/text access to a local operator in Los Angeles. We handle all service, monitoring, and maintenance. If an issue occurs, we take care of it promptly. \\n\",\"_id\":\"f1a238b\"},{\"tab_title\":\"What types of businesses benefit the most? \",\"faq_answer\":\"Salons, barbershops, dispensaries, smoke shops, wellness spas, convenience stores, and\\nretail locations. \",\"_id\":\"0fd0a6e\"},{\"tab_title\":\"How soon can we install? \",\"faq_answer\":\"Typically, within 7\\u201310 business days depending on availability. \",\"_id\":\"72c7205\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"faq_items_border_color\":\"#FAFAFA\",\"question_bg_color\":\"#E0E1E28C\",\"question_border_border\":\"solid\",\"question_border_color\":\"#EB0A0A00\",\"question_text_color_hover\":\"#FFFFFF\",\"question_bg_color_hover\":\"#0a578e\",\"question_text_color_active\":\"#FFFFFF\",\"question_bg_color_active\":\"#0a578e\",\"question_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2ecedb5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"\",\"faq_items_border_color_hover\":\"\",\"question_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"question_bg_color_active\":\"globals\\/colors?id=astglobalcolor0\",\"question_text_color_active\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":false}]'),
(7153, 742, '_elementor_edit_mode', 'builder'),
(7154, 742, '_elementor_template_type', 'container'),
(7155, 742, '_elementor_version', '3.33.0'),
(7156, 742, '_elementor_pro_version', '3.25.4'),
(7157, 742, '_elementor_page_settings', 'a:0:{}'),
(7158, 742, '_elementor_data', '[{\"id\":\"cb45391\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"895777b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6141da6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"174c35f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"34f5ce8\",\"pp_condition_date_time_before_value\":\"2025-10-31 13:39\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_justify_content\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"560624a4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":64},\"background_background\":\"classic\",\"background_color\":\"#F0F5FABD\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23c0eef\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c7033a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"716fe32\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"35\",\"bottom\":\"65\",\"left\":\"35\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"12604d4\",\"pp_condition_date_time_before_value\":\"2025-10-31 13:39\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"41e843eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request an Appointment\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"5b2ebfa\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49a7b175\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Request  page Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"ad0cc99\",\"field_type\":\"text\",\"required\":\"\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"_id\":\"a401504\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"field_de6bab6\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"placeholder\":\"Phone\",\"_id\":\"de6bab6\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"896f350\",\"required\":\"\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"input_size\":\"lg\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"1b36c66\",\"pp_condition_date_time_before_value\":\"2025-10-31 13:39\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"selected_button_icon\":{\"value\":\"\",\"library\":\"\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(7159, 743, '_elementor_edit_mode', 'builder'),
(7160, 743, '_elementor_template_type', 'container'),
(7161, 743, '_elementor_version', '3.33.0');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7162, 743, '_elementor_pro_version', '3.25.4'),
(7163, 743, '_elementor_page_settings', 'a:0:{}'),
(7164, 743, '_elementor_data', '[{\"id\":\"cb45391\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"895777b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6141da6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"174c35f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"34f5ce8\",\"pp_condition_date_time_before_value\":\"2025-10-31 13:39\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_justify_content\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"560624a4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":64},\"background_background\":\"classic\",\"background_color\":\"#F0F5FABD\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23c0eef\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c7033a7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"716fe32\"}],\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"35\",\"bottom\":\"65\",\"left\":\"35\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"12604d4\",\"pp_condition_date_time_before_value\":\"2025-10-31 13:39\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"41e843eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request an Appointment\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"5b2ebfa\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49a7b175\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Request  page Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"ad0cc99\",\"field_type\":\"text\",\"required\":\"\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"_id\":\"a401504\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"field_de6bab6\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"placeholder\":\"Phone\",\"_id\":\"de6bab6\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"896f350\",\"required\":\"\",\"previous_button\":\"\",\"next_button\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"input_size\":\"lg\",\"show_labels\":\"\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"form_metadata\":[\"date\",\"time\"],\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"1b36c66\",\"pp_condition_date_time_before_value\":\"2025-10-31 13:39\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"selected_button_icon\":{\"value\":\"\",\"library\":\"\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(7166, 742, '_elementor_controls_usage', 'a:3:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:1:{s:11:\"button_size\";i:1;}s:13:\"section_email\";a:1:{s:13:\"form_metadata\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:2:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;}s:19:\"section_field_style\";a:1:{s:18:\"field_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:2;s:13:\"content_width\";i:1;s:5:\"width\";i:1;s:8:\"flex_gap\";i:1;s:20:\"flex_justify_content\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}}}}}'),
(7167, 744, '_elementor_edit_mode', 'builder'),
(7168, 744, '_elementor_template_type', 'page'),
(7169, 744, '_elementor_version', '3.33.0'),
(7170, 744, '_elementor_pro_version', '3.25.4'),
(7171, 744, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7172, 744, '_elementor_data', '[{\"id\":\"7925f02d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"572e907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dadf8b4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2f1edf4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7234e70\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"min_height\":{\"unit\":\"px\",\"size\":716,\"sizes\":[]},\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_slideshow_gallery\":[],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top right\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_overlay_color_b\":\"#241f21\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":270,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.51,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"flex_align_items\":\"center\",\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":436,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_position_mobile_extra\":\"center center\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"banner_sections\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"741c07f0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c792e35\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"42ff320\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0050bf0\"}],\"pp_display_conditions\":[{\"_id\":\"4118f20\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInUp\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3de3fed9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"DAO WELLNESS\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"3b62e03\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d428678\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Psychotherapy Focused on Giving You Control\",\"header_size\":\"h4\",\"pp_display_conditions\":[{\"_id\":\"3b62e03\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ea453cc\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Knowing others is intelligence; Knowing yourself is true wisdom. Mastering others is strength; mastering yourself is true power.<br \\/>-Lao Tzu<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"4dd397e\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor2\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"173d38c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f73fa8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5878b2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"70615e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"590420b\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"css_classes\":\"who_sections\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"96b0283\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6168c28\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b5b37be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cf0ba03\"}],\"pp_display_conditions\":[{\"_id\":\"05681ef\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"13f39ebc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0d0f89a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"268921d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"310dda3\"}],\"pp_display_conditions\":[{\"_id\":\"671530e\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInLeft\",\"css_classes\":\"img_col\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c097aa6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17fdec4\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":96,\"sizes\":[]},\"width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7bb3932a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0d0f89a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"268921d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"310dda3\"}],\"pp_display_conditions\":[{\"_id\":\"671530e\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInRight\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a06bcf3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Who I Am\",\"pp_display_conditions\":[{\"_id\":\"1bf1129\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1814a1c9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"To Inspire Those to Love So That We Can Lead With Passion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1bf1129\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ddf9b38\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>My name is Brian Nguyen, and I am a Licensed Clinical Social Worker. My passion lies in helping others lead their lives with complete unfiltered passion and drive. Our experiences, once processed, can lead us to amazing success and prosperity. You will dictate the treatment and how it flows, and you are in full control of each session. I will be your support throughout.<\\/p><p>I am trained\\u200b in numerous modalities ranging from Cognitive Behavioral Therapy, Eye Movement Desensitization and Reprocessing (EMDR), Mindfulness, Hakomi, Solution Focused Therapy, and Motivational Interviewing. I will approach your treatment in a multitude of ways and utilize all the tools I have at my disposal to ensure complete overall wellness.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bfd21c8\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2126099e\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"be02846\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/daowellness\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"66b7ae62\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F1F1F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"93ee97b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"119a6ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"718c65e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"317a9ea\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_color\":\"\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"475e8e53\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"26ba932\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14c309b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1a35d65\"}],\"pp_display_conditions\":[{\"_id\":\"d15f7bb\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"zoomIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"65b019e4\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1cd9252\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b935ab6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f7e9d81\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"4e2d80f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"26ba932\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14c309b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1a35d65\"}],\"pp_display_conditions\":[{\"_id\":\"d15f7bb\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_wrap\":\"wrap\",\"flex_gap_tablet_extra\":{\"column\":\"17\",\"row\":\"17\",\"isLinked\":true,\"unit\":\"px\",\"size\":17},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9554ac3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8968415\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c0d5cd4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1a94a0a\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"25\",\"left\":\"5\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f5b3545\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"},\"flex_justify_content\":\"space-between\",\"css_classes\":\"ser_col\",\"animation\":\"fadeInLeft\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b184d88\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"title_text\":\"Individual Therapy\",\"description_text\":\"Individual therapy is immensely intimate and extremely impactful. It will allow you to gain unbiased and genuine support from me to support your goals.rk.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"94b7fd6\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"549c23f6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ebb2461\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/daowellness\\/individual-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1e0804cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8968415\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c0d5cd4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1a94a0a\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"25\",\"left\":\"5\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f5b3545\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"},\"flex_justify_content\":\"space-between\",\"css_classes\":\"ser_col\",\"animation\":\"zoomIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34effbe2\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"title_text\":\"Eye Movement Desensitization And Reprocessing\",\"description_text\":\"EMDR (Eye Movement Desensitization and Reprocessing) is a psychotherapy that enables people to heal from the symptoms \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"94b7fd6\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4cf50edb\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ebb2461\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/daowellness\\/eye-movement-desensitization-and-reprocessing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1c5340cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8968415\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c0d5cd4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1a94a0a\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"25\",\"left\":\"5\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f5b3545\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"},\"flex_justify_content\":\"space-between\",\"css_classes\":\"ser_col\",\"animation\":\"fadeInRight\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f5b798e\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"title_text\":\"Couples Therapy\",\"description_text\":\"Relationships are dynamic and ever changing. As long as no one is hurt, there is no wrong relationship. I will help you and your partner find a solution \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"94b7fd6\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d8028cf\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ebb2461\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/daowellness\\/couples-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35e31728\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"26ba932\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14c309b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1a35d65\"}],\"pp_display_conditions\":[{\"_id\":\"d15f7bb\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"zoomIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"96df935\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"View All Services \",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/daowellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5016ea5\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2062f134\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6b3c0c2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80b390b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83d638d\"}],\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9280972\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e693647\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":776,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2b71508\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2128b92\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec5872b\"}],\"pp_display_conditions\":[{\"_id\":\"90a6e96\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"zoomIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c4003be\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Get In Touch With Me\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ea9a469\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14aba84c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"\",\"library\":\"\"},\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"11b616d\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1e3545a0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"Ready to start your journey to self-discovery and personal empowerment? Reach out today for a personalized therapy plan that suits your needs.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"85d33a8\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor2\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59fc6b5d\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"Contact \",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/daowellness\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8e517b6\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor2\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"10a2fc05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0f71f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"84562d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"66e62c2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6b97631\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f43650f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db0de62\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6b20040\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"863c606\"}],\"pp_display_conditions\":[{\"_id\":\"23a7079\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"zoomIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"41f1ff\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b79057d\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e54034\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f7e9d81\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"7e6fda57\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db0de62\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6b20040\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"863c606\"}],\"pp_display_conditions\":[{\"_id\":\"23a7079\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5883cc3d\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"classic_filter_all_label\":\"All\",\"classic_search_form_input_placeholder\":\"Search...\",\"classic_search_form_button_text\":\"Search\",\"classic_post_terms_separator\":\",\",\"classic_post_meta_separator\":\"-\",\"classic_date_custom_format\":\"F j, Y\",\"classic_button_text\":\"Read More\",\"classic_pagination_load_more_label\":\"Load More\",\"classic_pagination_prev_label\":\"&laquo; Previous\",\"classic_pagination_next_label\":\"Next &raquo;\",\"card_filter_all_label\":\"All\",\"card_search_form_input_placeholder\":\"Search...\",\"card_search_form_button_text\":\"Search\",\"card_post_terms_separator\":\",\",\"card_post_meta_separator\":\"-\",\"card_date_custom_format\":\"F j, Y\",\"card_button_text\":\"Read More\",\"card_pagination_load_more_label\":\"Load More\",\"card_pagination_prev_label\":\"&laquo; Previous\",\"card_pagination_next_label\":\"Next &raquo;\",\"checkerboard_filter_all_label\":\"All\",\"checkerboard_search_form_input_placeholder\":\"Search...\",\"checkerboard_search_form_button_text\":\"Search\",\"checkerboard_post_terms_separator\":\",\",\"checkerboard_post_meta_separator\":\"-\",\"checkerboard_date_custom_format\":\"F j, Y\",\"checkerboard_button_text\":\"Read More\",\"checkerboard_pagination_load_more_label\":\"Load More\",\"checkerboard_pagination_prev_label\":\"&laquo; Previous\",\"checkerboard_pagination_next_label\":\"Next &raquo;\",\"creative_filter_all_label\":\"All\",\"creative_search_form_input_placeholder\":\"Search...\",\"creative_search_form_button_text\":\"Search\",\"creative_post_terms_separator\":\",\",\"creative_post_meta_separator\":\"-\",\"creative_date_custom_format\":\"F j, Y\",\"creative_button_text\":\"Read More\",\"creative_pagination_load_more_label\":\"Load More\",\"creative_pagination_prev_label\":\"&laquo; Previous\",\"creative_pagination_next_label\":\"Next &raquo;\",\"event_filter_all_label\":\"All\",\"event_search_form_input_placeholder\":\"Search...\",\"event_search_form_button_text\":\"Search\",\"event_post_terms_separator\":\",\",\"event_post_meta_separator\":\"-\",\"event_date_custom_format\":\"F j, Y\",\"event_button_text\":\"Read More\",\"event_pagination_load_more_label\":\"Load More\",\"event_pagination_prev_label\":\"&laquo; Previous\",\"event_pagination_next_label\":\"Next &raquo;\",\"news_filter_all_label\":\"All\",\"news_search_form_input_placeholder\":\"Search...\",\"news_search_form_button_text\":\"Search\",\"news_post_terms_separator\":\",\",\"news_post_meta_separator\":\"-\",\"news_date_custom_format\":\"F j, Y\",\"news_button_text\":\"Read More\",\"news_pagination_load_more_label\":\"Load More\",\"news_pagination_prev_label\":\"&laquo; Previous\",\"news_pagination_next_label\":\"Next &raquo;\",\"overlap_filter_all_label\":\"All\",\"overlap_search_form_input_placeholder\":\"Search...\",\"overlap_search_form_button_text\":\"Search\",\"overlap_post_terms_separator\":\",\",\"overlap_post_meta_separator\":\"-\",\"overlap_date_custom_format\":\"F j, Y\",\"overlap_button_text\":\"Read More\",\"overlap_pagination_load_more_label\":\"Load More\",\"overlap_pagination_prev_label\":\"&laquo; Previous\",\"overlap_pagination_next_label\":\"Next &raquo;\",\"portfolio_filter_all_label\":\"All\",\"portfolio_search_form_input_placeholder\":\"Search...\",\"portfolio_search_form_button_text\":\"Search\",\"portfolio_post_terms_separator\":\",\",\"portfolio_post_meta_separator\":\"-\",\"portfolio_date_custom_format\":\"F j, Y\",\"portfolio_button_text\":\"Read More\",\"portfolio_pagination_load_more_label\":\"Load More\",\"portfolio_pagination_prev_label\":\"&laquo; Previous\",\"portfolio_pagination_next_label\":\"Next &raquo;\",\"template_filter_all_label\":\"All\",\"template_search_form_input_placeholder\":\"Search...\",\"template_search_form_button_text\":\"Search\",\"template_pagination_load_more_label\":\"Load More\",\"template_pagination_prev_label\":\"&laquo; Previous\",\"template_pagination_next_label\":\"Next &raquo;\",\"pp_display_conditions\":[{\"_id\":\"abbeafc\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"posts_per_page\":3,\"classic_equal_height\":\"yes\",\"classic_post_box_shadow_box_shadow_type\":\"yes\",\"classic_thumbnail_size\":\"full\",\"classic_title_html_tag\":\"h5\",\"classic_show_excerpt\":\"yes\",\"classic_excerpt_length\":12,\"classic_show_comments\":\"\",\"classic_show_button\":\"yes\",\"classic_post_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"classic_post_content_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_columns_mobile_extra\":\"1\",\"classic_posts_horizontal_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"classic_terms_text_color\":\"#a0138e\",\"classic_terms_text_color_hover\":\"#241f21\",\"classic_meta_text_color\":\"#a0138e\",\"classic_meta_links_color_hover\":\"#241f21\",\"classic_button_typography_typography\":\"custom\",\"classic_button_typography_text_decoration\":\"underline\",\"classic_button_bg_color_normal\":\"#A0138E00\",\"classic_button_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"classic_button_padding\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true},\"classic_button_bg_color_hover\":\"#02010100\",\"__globals__\":{\"classic_terms_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"classic_meta_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"classic_meta_links_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"classic_terms_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"classic_button_bg_color_normal\":\"\",\"classic_button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"classic_button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"classic_terms_margin_bottom\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"classic_excerpt_margin_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"classic_meta_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"classic_filter_dropdown_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"classic_fallback_image_custom\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"classic_select_author_icon\":{\"value\":\"\",\"library\":\"\"},\"classic_select_date_icon\":{\"value\":\"\",\"library\":\"\"},\"classic_select_comments_icon\":{\"value\":\"\",\"library\":\"\"},\"classic_select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"classic_select_pagination_load_more_button_icon\":{\"value\":\"\",\"library\":\"\"},\"classic_title_separator_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"classic_title_separator_background_slideshow_gallery\":[],\"classic_select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"card_filter_dropdown_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"card_fallback_image_custom\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"card_select_author_icon\":{\"value\":\"\",\"library\":\"\"},\"card_select_date_icon\":{\"value\":\"\",\"library\":\"\"},\"card_select_comments_icon\":{\"value\":\"\",\"library\":\"\"},\"card_select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"card_select_pagination_load_more_button_icon\":{\"value\":\"\",\"library\":\"\"},\"card_title_separator_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"card_title_separator_background_slideshow_gallery\":[],\"card_select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"checkerboard_filter_dropdown_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"checkerboard_fallback_image_custom\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"checkerboard_select_author_icon\":{\"value\":\"\",\"library\":\"\"},\"checkerboard_select_date_icon\":{\"value\":\"\",\"library\":\"\"},\"checkerboard_select_comments_icon\":{\"value\":\"\",\"library\":\"\"},\"checkerboard_select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"checkerboard_select_pagination_load_more_button_icon\":{\"value\":\"\",\"library\":\"\"},\"checkerboard_title_separator_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"checkerboard_title_separator_background_slideshow_gallery\":[],\"checkerboard_select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"creative_filter_dropdown_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"creative_fallback_image_custom\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"creative_select_author_icon\":{\"value\":\"\",\"library\":\"\"},\"creative_select_date_icon\":{\"value\":\"\",\"library\":\"\"},\"creative_select_comments_icon\":{\"value\":\"\",\"library\":\"\"},\"creative_select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"creative_select_pagination_load_more_button_icon\":{\"value\":\"\",\"library\":\"\"},\"creative_title_separator_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"creative_title_separator_background_slideshow_gallery\":[],\"creative_select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"event_filter_dropdown_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"event_fallback_image_custom\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"event_select_author_icon\":{\"value\":\"\",\"library\":\"\"},\"event_select_date_icon\":{\"value\":\"\",\"library\":\"\"},\"event_select_comments_icon\":{\"value\":\"\",\"library\":\"\"},\"event_select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"event_select_pagination_load_more_button_icon\":{\"value\":\"\",\"library\":\"\"},\"event_title_separator_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"event_title_separator_background_slideshow_gallery\":[],\"event_select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"news_filter_dropdown_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"news_fallback_image_custom\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"news_select_author_icon\":{\"value\":\"\",\"library\":\"\"},\"news_select_date_icon\":{\"value\":\"\",\"library\":\"\"},\"news_select_comments_icon\":{\"value\":\"\",\"library\":\"\"},\"news_select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"news_select_pagination_load_more_button_icon\":{\"value\":\"\",\"library\":\"\"},\"news_title_separator_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"news_title_separator_background_slideshow_gallery\":[],\"news_select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"overlap_filter_dropdown_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"overlap_fallback_image_custom\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"overlap_select_author_icon\":{\"value\":\"\",\"library\":\"\"},\"overlap_select_date_icon\":{\"value\":\"\",\"library\":\"\"},\"overlap_select_comments_icon\":{\"value\":\"\",\"library\":\"\"},\"overlap_select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"overlap_select_pagination_load_more_button_icon\":{\"value\":\"\",\"library\":\"\"},\"overlap_title_separator_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"overlap_title_separator_background_slideshow_gallery\":[],\"overlap_select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"portfolio_filter_dropdown_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"portfolio_fallback_image_custom\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"portfolio_select_author_icon\":{\"value\":\"\",\"library\":\"\"},\"portfolio_select_date_icon\":{\"value\":\"\",\"library\":\"\"},\"portfolio_select_comments_icon\":{\"value\":\"\",\"library\":\"\"},\"portfolio_select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"portfolio_select_pagination_load_more_button_icon\":{\"value\":\"\",\"library\":\"\"},\"portfolio_overlay_background_color_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"portfolio_overlay_background_color_normal_slideshow_gallery\":[],\"portfolio_overlay_background_color_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"portfolio_overlay_background_color_hover_slideshow_gallery\":[],\"portfolio_title_separator_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"portfolio_title_separator_background_slideshow_gallery\":[],\"portfolio_select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"template_filter_dropdown_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"template_select_pagination_load_more_button_icon\":{\"value\":\"\",\"library\":\"\"},\"template_select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"pp-posts\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7173, 745, '_elementor_edit_mode', 'builder'),
(7174, 745, '_elementor_template_type', 'page'),
(7175, 745, '_elementor_version', '3.33.0'),
(7176, 745, '_elementor_pro_version', '3.25.4'),
(7177, 745, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7178, 745, '_elementor_data', '[{\"id\":\"7925f02d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"572e907\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dadf8b4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2f1edf4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7234e70\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"min_height\":{\"unit\":\"px\",\"size\":716,\"sizes\":[]},\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_slideshow_gallery\":[],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top right\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_overlay_color_b\":\"#241f21\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":270,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.51,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"flex_align_items\":\"center\",\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":436,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_position_mobile_extra\":\"center center\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"banner_sections\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"741c07f0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c792e35\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"42ff320\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0050bf0\"}],\"pp_display_conditions\":[{\"_id\":\"4118f20\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInUp\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3de3fed9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"DAO WELLNESS\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"3b62e03\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d428678\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Psychotherapy Focused on Giving You Control\",\"header_size\":\"h4\",\"pp_display_conditions\":[{\"_id\":\"3b62e03\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ea453cc\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Knowing others is intelligence; Knowing yourself is true wisdom. Mastering others is strength; mastering yourself is true power.<br \\/>-Lao Tzu<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"4dd397e\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor2\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"173d38c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f73fa8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5878b2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"70615e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"590420b\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"css_classes\":\"who_sections\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"96b0283\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6168c28\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b5b37be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cf0ba03\"}],\"pp_display_conditions\":[{\"_id\":\"05681ef\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_wrap_tablet\":\"wrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"13f39ebc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0d0f89a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"268921d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"310dda3\"}],\"pp_display_conditions\":[{\"_id\":\"671530e\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInLeft\",\"css_classes\":\"img_col\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c097aa6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"17fdec4\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":96,\"sizes\":[]},\"width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7bb3932a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0d0f89a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"268921d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"310dda3\"}],\"pp_display_conditions\":[{\"_id\":\"671530e\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInRight\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a06bcf3\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Who I Am\",\"pp_display_conditions\":[{\"_id\":\"1bf1129\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1814a1c9\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"To Inspire Those to Love So That We Can Lead With Passion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"1bf1129\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor0\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ddf9b38\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>My name is Brian Nguyen, and I am a Licensed Clinical Social Worker. My passion lies in helping others lead their lives with complete unfiltered passion and drive. Our experiences, once processed, can lead us to amazing success and prosperity. You will dictate the treatment and how it flows, and you are in full control of each session. I will be your support throughout.<\\/p><p>I am trained\\u200b in numerous modalities ranging from Cognitive Behavioral Therapy, Eye Movement Desensitization and Reprocessing (EMDR), Mindfulness, Hakomi, Solution Focused Therapy, and Motivational Interviewing. I will approach your treatment in a multitude of ways and utilize all the tools I have at my disposal to ensure complete overall wellness.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bfd21c8\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2126099e\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"be02846\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/daowellness\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"66b7ae62\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F1F1F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"93ee97b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"119a6ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"718c65e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"317a9ea\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_color\":\"\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_sections\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"475e8e53\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"26ba932\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14c309b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1a35d65\"}],\"pp_display_conditions\":[{\"_id\":\"d15f7bb\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"zoomIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"65b019e4\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Services \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1cd9252\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b935ab6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f7e9d81\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"4e2d80f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"26ba932\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14c309b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1a35d65\"}],\"pp_display_conditions\":[{\"_id\":\"d15f7bb\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_wrap\":\"wrap\",\"flex_gap_tablet_extra\":{\"column\":\"17\",\"row\":\"17\",\"isLinked\":true,\"unit\":\"px\",\"size\":17},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9554ac3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8968415\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c0d5cd4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1a94a0a\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"25\",\"left\":\"5\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f5b3545\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"},\"flex_justify_content\":\"space-between\",\"css_classes\":\"ser_col\",\"animation\":\"fadeInLeft\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b184d88\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"title_text\":\"Individual Therapy\",\"description_text\":\"Individual therapy is immensely intimate and extremely impactful. It will allow you to gain unbiased and genuine support from me to support your goals.rk.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"94b7fd6\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"549c23f6\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ebb2461\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/daowellness\\/individual-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1e0804cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8968415\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c0d5cd4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1a94a0a\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"25\",\"left\":\"5\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f5b3545\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"},\"flex_justify_content\":\"space-between\",\"css_classes\":\"ser_col\",\"animation\":\"zoomIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34effbe2\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"title_text\":\"Eye Movement Desensitization And Reprocessing\",\"description_text\":\"EMDR (Eye Movement Desensitization and Reprocessing) is a psychotherapy that enables people to heal from the symptoms \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"94b7fd6\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4cf50edb\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ebb2461\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/daowellness\\/eye-movement-desensitization-and-reprocessing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1c5340cc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8968415\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c0d5cd4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1a94a0a\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"25\",\"left\":\"5\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f5b3545\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"},\"flex_justify_content\":\"space-between\",\"css_classes\":\"ser_col\",\"animation\":\"fadeInRight\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f5b798e\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"title_text\":\"Couples Therapy\",\"description_text\":\"Relationships are dynamic and ever changing. As long as no one is hurt, there is no wrong relationship. I will help you and your partner find a solution \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"94b7fd6\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d8028cf\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ebb2461\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/daowellness\\/couples-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"35e31728\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"26ba932\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14c309b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1a35d65\"}],\"pp_display_conditions\":[{\"_id\":\"d15f7bb\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"zoomIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"96df935\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"View All Services \",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/daowellness\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5016ea5\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2062f134\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6b3c0c2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80b390b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83d638d\"}],\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9280972\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e693647\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":776,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2b71508\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2128b92\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ec5872b\"}],\"pp_display_conditions\":[{\"_id\":\"90a6e96\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"zoomIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c4003be\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Get In Touch With Me\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ea9a469\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14aba84c\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"px\",\"size\":110,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"\",\"library\":\"\"},\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"11b616d\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1e3545a0\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"Ready to start your journey to self-discovery and personal empowerment? Reach out today for a personalized therapy plan that suits your needs.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"85d33a8\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor2\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59fc6b5d\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"Contact \",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/daowellness\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8e517b6\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor2\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"10a2fc05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0f71f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"84562d0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"66e62c2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6b97631\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f43650f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db0de62\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6b20040\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"863c606\"}],\"pp_display_conditions\":[{\"_id\":\"23a7079\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"zoomIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"41f1ff\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b79057d\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33e54034\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f7e9d81\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"7e6fda57\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db0de62\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6b20040\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"863c606\"}],\"pp_display_conditions\":[{\"_id\":\"23a7079\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5883cc3d\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"classic_filter_all_label\":\"All\",\"classic_search_form_input_placeholder\":\"Search...\",\"classic_search_form_button_text\":\"Search\",\"classic_post_terms_separator\":\",\",\"classic_post_meta_separator\":\"-\",\"classic_date_custom_format\":\"F j, Y\",\"classic_button_text\":\"Read More\",\"classic_pagination_load_more_label\":\"Load More\",\"classic_pagination_prev_label\":\"&laquo; Previous\",\"classic_pagination_next_label\":\"Next &raquo;\",\"card_filter_all_label\":\"All\",\"card_search_form_input_placeholder\":\"Search...\",\"card_search_form_button_text\":\"Search\",\"card_post_terms_separator\":\",\",\"card_post_meta_separator\":\"-\",\"card_date_custom_format\":\"F j, Y\",\"card_button_text\":\"Read More\",\"card_pagination_load_more_label\":\"Load More\",\"card_pagination_prev_label\":\"&laquo; Previous\",\"card_pagination_next_label\":\"Next &raquo;\",\"checkerboard_filter_all_label\":\"All\",\"checkerboard_search_form_input_placeholder\":\"Search...\",\"checkerboard_search_form_button_text\":\"Search\",\"checkerboard_post_terms_separator\":\",\",\"checkerboard_post_meta_separator\":\"-\",\"checkerboard_date_custom_format\":\"F j, Y\",\"checkerboard_button_text\":\"Read More\",\"checkerboard_pagination_load_more_label\":\"Load More\",\"checkerboard_pagination_prev_label\":\"&laquo; Previous\",\"checkerboard_pagination_next_label\":\"Next &raquo;\",\"creative_filter_all_label\":\"All\",\"creative_search_form_input_placeholder\":\"Search...\",\"creative_search_form_button_text\":\"Search\",\"creative_post_terms_separator\":\",\",\"creative_post_meta_separator\":\"-\",\"creative_date_custom_format\":\"F j, Y\",\"creative_button_text\":\"Read More\",\"creative_pagination_load_more_label\":\"Load More\",\"creative_pagination_prev_label\":\"&laquo; Previous\",\"creative_pagination_next_label\":\"Next &raquo;\",\"event_filter_all_label\":\"All\",\"event_search_form_input_placeholder\":\"Search...\",\"event_search_form_button_text\":\"Search\",\"event_post_terms_separator\":\",\",\"event_post_meta_separator\":\"-\",\"event_date_custom_format\":\"F j, Y\",\"event_button_text\":\"Read More\",\"event_pagination_load_more_label\":\"Load More\",\"event_pagination_prev_label\":\"&laquo; Previous\",\"event_pagination_next_label\":\"Next &raquo;\",\"news_filter_all_label\":\"All\",\"news_search_form_input_placeholder\":\"Search...\",\"news_search_form_button_text\":\"Search\",\"news_post_terms_separator\":\",\",\"news_post_meta_separator\":\"-\",\"news_date_custom_format\":\"F j, Y\",\"news_button_text\":\"Read More\",\"news_pagination_load_more_label\":\"Load More\",\"news_pagination_prev_label\":\"&laquo; Previous\",\"news_pagination_next_label\":\"Next &raquo;\",\"overlap_filter_all_label\":\"All\",\"overlap_search_form_input_placeholder\":\"Search...\",\"overlap_search_form_button_text\":\"Search\",\"overlap_post_terms_separator\":\",\",\"overlap_post_meta_separator\":\"-\",\"overlap_date_custom_format\":\"F j, Y\",\"overlap_button_text\":\"Read More\",\"overlap_pagination_load_more_label\":\"Load More\",\"overlap_pagination_prev_label\":\"&laquo; Previous\",\"overlap_pagination_next_label\":\"Next &raquo;\",\"portfolio_filter_all_label\":\"All\",\"portfolio_search_form_input_placeholder\":\"Search...\",\"portfolio_search_form_button_text\":\"Search\",\"portfolio_post_terms_separator\":\",\",\"portfolio_post_meta_separator\":\"-\",\"portfolio_date_custom_format\":\"F j, Y\",\"portfolio_button_text\":\"Read More\",\"portfolio_pagination_load_more_label\":\"Load More\",\"portfolio_pagination_prev_label\":\"&laquo; Previous\",\"portfolio_pagination_next_label\":\"Next &raquo;\",\"template_filter_all_label\":\"All\",\"template_search_form_input_placeholder\":\"Search...\",\"template_search_form_button_text\":\"Search\",\"template_pagination_load_more_label\":\"Load More\",\"template_pagination_prev_label\":\"&laquo; Previous\",\"template_pagination_next_label\":\"Next &raquo;\",\"pp_display_conditions\":[{\"_id\":\"abbeafc\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-11-22 to 2025-11-28\",\"pp_condition_date_time_before_value\":\"2025-11-28 09:16\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"posts_per_page\":3,\"classic_equal_height\":\"yes\",\"classic_post_box_shadow_box_shadow_type\":\"yes\",\"classic_thumbnail_size\":\"full\",\"classic_title_html_tag\":\"h5\",\"classic_show_excerpt\":\"yes\",\"classic_excerpt_length\":12,\"classic_show_comments\":\"\",\"classic_show_button\":\"yes\",\"classic_post_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"classic_post_content_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_columns_mobile_extra\":\"1\",\"classic_posts_horizontal_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"classic_terms_text_color\":\"#a0138e\",\"classic_terms_text_color_hover\":\"#241f21\",\"classic_meta_text_color\":\"#a0138e\",\"classic_meta_links_color_hover\":\"#241f21\",\"classic_button_typography_typography\":\"custom\",\"classic_button_typography_text_decoration\":\"underline\",\"classic_button_bg_color_normal\":\"#A0138E00\",\"classic_button_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"classic_button_padding\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true},\"classic_button_bg_color_hover\":\"#02010100\",\"__globals__\":{\"classic_terms_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"classic_meta_text_color\":\"globals\\/colors?id=astglobalcolor0\",\"classic_meta_links_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"classic_terms_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"classic_button_bg_color_normal\":\"\",\"classic_button_text_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"classic_button_text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"classic_terms_margin_bottom\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"classic_excerpt_margin_bottom\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"classic_meta_margin_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"classic_filter_dropdown_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"classic_fallback_image_custom\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"classic_select_author_icon\":{\"value\":\"\",\"library\":\"\"},\"classic_select_date_icon\":{\"value\":\"\",\"library\":\"\"},\"classic_select_comments_icon\":{\"value\":\"\",\"library\":\"\"},\"classic_select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"classic_select_pagination_load_more_button_icon\":{\"value\":\"\",\"library\":\"\"},\"classic_title_separator_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"classic_title_separator_background_slideshow_gallery\":[],\"classic_select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"card_filter_dropdown_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"card_fallback_image_custom\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"card_select_author_icon\":{\"value\":\"\",\"library\":\"\"},\"card_select_date_icon\":{\"value\":\"\",\"library\":\"\"},\"card_select_comments_icon\":{\"value\":\"\",\"library\":\"\"},\"card_select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"card_select_pagination_load_more_button_icon\":{\"value\":\"\",\"library\":\"\"},\"card_title_separator_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"card_title_separator_background_slideshow_gallery\":[],\"card_select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"checkerboard_filter_dropdown_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"checkerboard_fallback_image_custom\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"checkerboard_select_author_icon\":{\"value\":\"\",\"library\":\"\"},\"checkerboard_select_date_icon\":{\"value\":\"\",\"library\":\"\"},\"checkerboard_select_comments_icon\":{\"value\":\"\",\"library\":\"\"},\"checkerboard_select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"checkerboard_select_pagination_load_more_button_icon\":{\"value\":\"\",\"library\":\"\"},\"checkerboard_title_separator_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"checkerboard_title_separator_background_slideshow_gallery\":[],\"checkerboard_select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"creative_filter_dropdown_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"creative_fallback_image_custom\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"creative_select_author_icon\":{\"value\":\"\",\"library\":\"\"},\"creative_select_date_icon\":{\"value\":\"\",\"library\":\"\"},\"creative_select_comments_icon\":{\"value\":\"\",\"library\":\"\"},\"creative_select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"creative_select_pagination_load_more_button_icon\":{\"value\":\"\",\"library\":\"\"},\"creative_title_separator_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"creative_title_separator_background_slideshow_gallery\":[],\"creative_select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"event_filter_dropdown_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"event_fallback_image_custom\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"event_select_author_icon\":{\"value\":\"\",\"library\":\"\"},\"event_select_date_icon\":{\"value\":\"\",\"library\":\"\"},\"event_select_comments_icon\":{\"value\":\"\",\"library\":\"\"},\"event_select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"event_select_pagination_load_more_button_icon\":{\"value\":\"\",\"library\":\"\"},\"event_title_separator_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"event_title_separator_background_slideshow_gallery\":[],\"event_select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"news_filter_dropdown_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"news_fallback_image_custom\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"news_select_author_icon\":{\"value\":\"\",\"library\":\"\"},\"news_select_date_icon\":{\"value\":\"\",\"library\":\"\"},\"news_select_comments_icon\":{\"value\":\"\",\"library\":\"\"},\"news_select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"news_select_pagination_load_more_button_icon\":{\"value\":\"\",\"library\":\"\"},\"news_title_separator_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"news_title_separator_background_slideshow_gallery\":[],\"news_select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"overlap_filter_dropdown_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"overlap_fallback_image_custom\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"overlap_select_author_icon\":{\"value\":\"\",\"library\":\"\"},\"overlap_select_date_icon\":{\"value\":\"\",\"library\":\"\"},\"overlap_select_comments_icon\":{\"value\":\"\",\"library\":\"\"},\"overlap_select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"overlap_select_pagination_load_more_button_icon\":{\"value\":\"\",\"library\":\"\"},\"overlap_title_separator_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"overlap_title_separator_background_slideshow_gallery\":[],\"overlap_select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"portfolio_filter_dropdown_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"portfolio_fallback_image_custom\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"portfolio_select_author_icon\":{\"value\":\"\",\"library\":\"\"},\"portfolio_select_date_icon\":{\"value\":\"\",\"library\":\"\"},\"portfolio_select_comments_icon\":{\"value\":\"\",\"library\":\"\"},\"portfolio_select_button_icon\":{\"value\":\"\",\"library\":\"\"},\"portfolio_select_pagination_load_more_button_icon\":{\"value\":\"\",\"library\":\"\"},\"portfolio_overlay_background_color_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"portfolio_overlay_background_color_normal_slideshow_gallery\":[],\"portfolio_overlay_background_color_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"portfolio_overlay_background_color_hover_slideshow_gallery\":[],\"portfolio_title_separator_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"portfolio_title_separator_background_slideshow_gallery\":[],\"portfolio_select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"template_filter_dropdown_icon\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"template_select_pagination_load_more_button_icon\":{\"value\":\"\",\"library\":\"\"},\"template_select_arrow\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"pp-posts\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7180, 744, '_elementor_controls_usage', 'a:8:{s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:7;s:11:\"header_size\";i:3;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:7;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:5:\"align\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:5:\"align\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:8:{s:13:\"content_width\";i:12;s:5:\"width\";i:4;s:20:\"flex_justify_content\";i:6;s:14:\"flex_direction\";i:7;s:10:\"min_height\";i:1;s:16:\"flex_align_items\";i:1;s:9:\"flex_wrap\";i:1;s:11:\"boxed_width\";i:1;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:18;}s:18:\"section_background\";a:9:{s:21:\"background_background\";i:7;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;s:36:\"background_slideshow_background_size\";i:1;s:40:\"background_slideshow_background_position\";i:1;s:16:\"background_color\";i:1;s:21:\"background_attachment\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:29:\"background_overlay_color_stop\";i:1;s:26:\"background_overlay_color_b\";i:1;s:31:\"background_overlay_color_b_stop\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:18;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:11;}s:14:\"section_layout\";a:2:{s:7:\"padding\";i:8;s:11:\"css_classes\";i:7;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:19:\"image_border_radius\";i:1;s:5:\"align\";i:1;s:5:\"width\";i:1;s:18:\"image_border_width\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:6;s:4:\"link\";i:6;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:5;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:4:{s:5:\"width\";i:3;s:5:\"align\";i:3;s:4:\"look\";i:1;s:4:\"icon\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:10:\"title_size\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_style_box\";a:2:{s:18:\"title_bottom_space\";i:3;s:11:\"image_space\";i:3;}s:19:\"section_style_image\";a:1:{s:10:\"image_size\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:8:\"pp-posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:7:{s:13:\"section_query\";a:1:{s:21:\"nothing_found_message\";i:1;}s:18:\"section_skin_field\";a:3:{s:14:\"posts_per_page\";i:1;s:20:\"classic_equal_height\";i:1;s:28:\"classic_columns_mobile_extra\";i:1;}s:21:\"classic_section_image\";a:1:{s:22:\"classic_thumbnail_size\";i:1;}s:26:\"classic_section_post_title\";a:1:{s:22:\"classic_title_html_tag\";i:1;}s:28:\"classic_section_post_excerpt\";a:2:{s:20:\"classic_show_excerpt\";i:1;s:22:\"classic_excerpt_length\";i:1;}s:25:\"classic_section_post_meta\";a:1:{s:21:\"classic_show_comments\";i:1;}s:22:\"classic_section_button\";a:1:{s:19:\"classic_show_button\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}s:5:\"style\";a:6:{s:30:\"classic_section_post_box_style\";a:2:{s:39:\"classic_post_box_shadow_box_shadow_type\";i:1;s:34:\"classic_post_box_shadow_box_shadow\";i:1;}s:34:\"classic_section_post_content_style\";a:1:{s:28:\"classic_post_content_padding\";i:1;}s:27:\"classic_section_terms_style\";a:3:{s:24:\"classic_terms_text_color\";i:1;s:30:\"classic_terms_text_color_hover\";i:1;s:27:\"classic_terms_margin_bottom\";i:1;}s:26:\"classic_section_meta_style\";a:3:{s:23:\"classic_meta_text_color\";i:1;s:30:\"classic_meta_links_color_hover\";i:1;s:26:\"classic_meta_margin_bottom\";i:1;}s:28:\"classic_section_button_style\";a:6:{s:36:\"classic_button_typography_typography\";i:1;s:41:\"classic_button_typography_text_decoration\";i:1;s:30:\"classic_button_bg_color_normal\";i:1;s:21:\"classic_button_margin\";i:1;s:22:\"classic_button_padding\";i:1;s:29:\"classic_button_bg_color_hover\";i:1;}s:29:\"classic_section_excerpt_style\";a:1:{s:29:\"classic_excerpt_margin_bottom\";i:1;}}}}}'),
(7181, 746, '_wp_page_template', 'elementor_header_footer'),
(7183, 746, '_elementor_edit_mode', 'builder'),
(7184, 746, '_elementor_template_type', 'wp-page'),
(7185, 746, '_elementor_version', '3.33.0'),
(7186, 746, '_elementor_pro_version', '3.25.4'),
(7187, 746, '_elementor_page_settings', 'a:0:{}'),
(7188, 747, '_wp_page_template', 'elementor_header_footer'),
(7190, 747, '_elementor_edit_mode', 'builder'),
(7191, 747, '_elementor_template_type', 'wp-page'),
(7192, 747, '_elementor_version', '3.33.0'),
(7193, 747, '_elementor_pro_version', '3.25.4'),
(7194, 747, '_elementor_page_settings', 'a:0:{}'),
(7227, 751, '_wp_page_template', 'elementor_header_footer'),
(7196, 748, '_wp_page_template', 'elementor_header_footer'),
(7198, 748, '_elementor_edit_mode', 'builder'),
(7199, 748, '_elementor_template_type', 'wp-page'),
(7200, 748, '_elementor_version', '3.33.0'),
(7201, 748, '_elementor_pro_version', '3.25.4'),
(7202, 748, '_elementor_data', '[{\"id\":\"9e899bf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bfb3f32\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"246b180\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f17ea2d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d8a77a1\"}]},\"elements\":[{\"id\":\"451bf63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0554458\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"992e6db\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f0c262d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cca9254\"}]},\"elements\":[{\"id\":\"86b910f\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f03e2ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a61d7c7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"FAQ Question 1\",\"_id\":\"482adc5\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},{\"tab_title\":\"FAQ Question 2\",\"_id\":\"4380af5\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},{\"tab_title\":\"FAQ Question 3\",\"_id\":\"c35cff9\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"question_bg_color\":\"#FAFAFA\",\"question_border_border\":\"solid\",\"question_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"question_border_color\":\"#FAFAFA\",\"question_padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"29\",\"bottom\":\"29\",\"left\":\"29\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2ecedb5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":false}]'),
(7207, 749, '_wp_page_template', 'elementor_header_footer'),
(7209, 749, '_elementor_edit_mode', 'builder'),
(7210, 749, '_elementor_template_type', 'wp-page'),
(7211, 749, '_elementor_version', '3.33.0'),
(7212, 749, '_elementor_pro_version', '3.25.4'),
(7213, 749, '_elementor_data', '[{\"id\":\"9e899bf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bfb3f32\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"246b180\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f17ea2d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d8a77a1\"}]},\"elements\":[{\"id\":\"451bf63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0554458\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"992e6db\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f0c262d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cca9254\"}]},\"elements\":[{\"id\":\"86b910f\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f03e2ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a61d7c7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"FAQ Question 1\",\"_id\":\"482adc5\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},{\"tab_title\":\"FAQ Question 2\",\"_id\":\"4380af5\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},{\"tab_title\":\"FAQ Question 3\",\"_id\":\"c35cff9\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"question_bg_color\":\"#FAFAFA\",\"question_border_border\":\"solid\",\"question_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"question_border_color\":\"#FAFAFA\",\"question_padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"29\",\"bottom\":\"29\",\"left\":\"29\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2ecedb5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":false}]'),
(7240, 752, '_wp_page_template', 'elementor_header_footer'),
(7242, 752, '_elementor_edit_mode', 'builder'),
(7243, 752, '_elementor_template_type', 'wp-page'),
(7244, 752, '_elementor_version', '3.33.0'),
(7245, 752, '_elementor_pro_version', '3.25.4'),
(7246, 752, '_elementor_data', '[{\"id\":\"9e899bf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bfb3f32\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"246b180\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f17ea2d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d8a77a1\"}]},\"elements\":[{\"id\":\"451bf63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0554458\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"992e6db\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f0c262d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cca9254\"}]},\"elements\":[{\"id\":\"86b910f\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f03e2ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a61d7c7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"FAQ Question 1\",\"_id\":\"482adc5\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},{\"tab_title\":\"FAQ Question 2\",\"_id\":\"4380af5\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},{\"tab_title\":\"FAQ Question 3\",\"_id\":\"c35cff9\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"faq_items_border_color\":\"#FAFAFA\",\"question_bg_color\":\"#FAFAFA\",\"question_border_border\":\"solid\",\"question_border_color\":\"#EB0A0A00\",\"question_padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"29\",\"bottom\":\"29\",\"left\":\"29\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2ecedb5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":false}]'),
(7306, 758, '_wp_page_template', 'elementor_header_footer'),
(7214, 749, '_elementor_page_settings', 'a:0:{}'),
(7217, 750, '_wp_page_template', 'elementor_header_footer'),
(7219, 750, '_elementor_edit_mode', 'builder'),
(7220, 750, '_elementor_template_type', 'wp-page'),
(7221, 750, '_elementor_version', '3.33.0'),
(7222, 750, '_elementor_pro_version', '3.25.4'),
(7223, 750, '_elementor_data', '[{\"id\":\"9e899bf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bfb3f32\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"246b180\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f17ea2d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d8a77a1\"}]},\"elements\":[{\"id\":\"451bf63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0554458\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"992e6db\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f0c262d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cca9254\"}]},\"elements\":[{\"id\":\"86b910f\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f03e2ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a61d7c7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"FAQ Question 1\",\"_id\":\"482adc5\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},{\"tab_title\":\"FAQ Question 2\",\"_id\":\"4380af5\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},{\"tab_title\":\"FAQ Question 3\",\"_id\":\"c35cff9\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"question_bg_color\":\"#FAFAFA\",\"question_border_border\":\"solid\",\"question_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"question_border_color\":\"#FAFAFA\",\"question_padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"29\",\"bottom\":\"29\",\"left\":\"29\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2ecedb5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":false}]'),
(7224, 750, '_elementor_page_settings', 'a:0:{}'),
(7229, 751, '_elementor_edit_mode', 'builder'),
(7230, 751, '_elementor_template_type', 'wp-page'),
(7231, 751, '_elementor_version', '3.33.0'),
(7232, 751, '_elementor_pro_version', '3.25.4'),
(7233, 751, '_elementor_data', '[{\"id\":\"9e899bf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bfb3f32\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"246b180\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f17ea2d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d8a77a1\"}]},\"elements\":[{\"id\":\"451bf63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0554458\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"992e6db\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f0c262d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cca9254\"}]},\"elements\":[{\"id\":\"86b910f\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f03e2ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a61d7c7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"FAQ Question 1\",\"_id\":\"482adc5\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},{\"tab_title\":\"FAQ Question 2\",\"_id\":\"4380af5\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},{\"tab_title\":\"FAQ Question 3\",\"_id\":\"c35cff9\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"faq_items_border_color\":\"#FAFAFA\",\"question_bg_color\":\"#FAFAFA\",\"question_border_border\":\"solid\",\"question_border_color\":\"#EB0A0A00\",\"question_padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"29\",\"bottom\":\"29\",\"left\":\"29\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2ecedb5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":false}]'),
(7273, 755, '_wp_page_template', 'elementor_header_footer'),
(7275, 755, '_elementor_edit_mode', 'builder'),
(7276, 755, '_elementor_template_type', 'wp-page'),
(7277, 755, '_elementor_version', '3.33.0'),
(7278, 755, '_elementor_pro_version', '3.25.4'),
(7279, 755, '_elementor_data', '[{\"id\":\"9e899bf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bfb3f32\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"246b180\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f17ea2d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d8a77a1\"}]},\"elements\":[{\"id\":\"451bf63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0554458\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"992e6db\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f0c262d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cca9254\"}]},\"elements\":[{\"id\":\"86b910f\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f03e2ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a61d7c7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"FAQ Question 1\",\"_id\":\"482adc5\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},{\"tab_title\":\"FAQ Question 2\",\"_id\":\"4380af5\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},{\"tab_title\":\"FAQ Question 3\",\"_id\":\"c35cff9\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"faq_items_border_color\":\"#FAFAFA\",\"question_bg_color\":\"#FAFAFA\",\"question_border_border\":\"solid\",\"question_border_color\":\"#EB0A0A00\",\"question_padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"29\",\"bottom\":\"29\",\"left\":\"29\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2ecedb5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"\",\"faq_items_border_color_hover\":\"\",\"question_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"question_bg_color_active\":\"globals\\/colors?id=astglobalcolor0\",\"question_text_color_active\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":false}]'),
(7247, 752, '_elementor_page_settings', 'a:0:{}'),
(7250, 753, '_wp_page_template', 'elementor_header_footer'),
(7252, 753, '_elementor_edit_mode', 'builder'),
(7253, 753, '_elementor_template_type', 'wp-page'),
(7254, 753, '_elementor_version', '3.33.0'),
(7255, 753, '_elementor_pro_version', '3.25.4'),
(7256, 753, '_elementor_data', '[{\"id\":\"9e899bf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bfb3f32\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"246b180\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f17ea2d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d8a77a1\"}]},\"elements\":[{\"id\":\"451bf63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0554458\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"992e6db\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f0c262d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cca9254\"}]},\"elements\":[{\"id\":\"86b910f\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f03e2ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a61d7c7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"FAQ Question 1\",\"_id\":\"482adc5\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},{\"tab_title\":\"FAQ Question 2\",\"_id\":\"4380af5\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},{\"tab_title\":\"FAQ Question 3\",\"_id\":\"c35cff9\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"faq_items_border_color\":\"#FAFAFA\",\"question_bg_color\":\"#FAFAFA\",\"question_border_border\":\"solid\",\"question_border_color\":\"#EB0A0A00\",\"question_padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"29\",\"bottom\":\"29\",\"left\":\"29\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2ecedb5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":false}]'),
(7257, 753, '_elementor_page_settings', 'a:0:{}'),
(7260, 754, '_wp_page_template', 'elementor_header_footer'),
(7262, 754, '_elementor_edit_mode', 'builder'),
(7263, 754, '_elementor_template_type', 'wp-page'),
(7264, 754, '_elementor_version', '3.33.0'),
(7265, 754, '_elementor_pro_version', '3.25.4'),
(7266, 754, '_elementor_data', '[{\"id\":\"9e899bf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bfb3f32\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"246b180\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f17ea2d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d8a77a1\"}]},\"elements\":[{\"id\":\"451bf63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0554458\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"992e6db\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f0c262d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cca9254\"}]},\"elements\":[{\"id\":\"86b910f\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f03e2ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a61d7c7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"FAQ Question 1\",\"_id\":\"482adc5\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},{\"tab_title\":\"FAQ Question 2\",\"_id\":\"4380af5\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},{\"tab_title\":\"FAQ Question 3\",\"_id\":\"c35cff9\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"faq_items_border_color\":\"#FAFAFA\",\"question_bg_color\":\"#FAFAFA\",\"question_border_border\":\"solid\",\"question_border_color\":\"#EB0A0A00\",\"question_padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"29\",\"bottom\":\"29\",\"left\":\"29\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2ecedb5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"\",\"faq_items_border_color_hover\":\"\",\"question_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"question_bg_color_active\":\"globals\\/colors?id=astglobalcolor0\",\"question_text_color_active\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":false}]'),
(7308, 758, '_elementor_edit_mode', 'builder'),
(7309, 758, '_elementor_template_type', 'wp-page'),
(7310, 758, '_elementor_version', '3.33.0'),
(7311, 758, '_elementor_pro_version', '3.25.4'),
(7312, 758, '_elementor_data', '[{\"id\":\"9e899bf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bfb3f32\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"246b180\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f17ea2d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d8a77a1\"}]},\"elements\":[{\"id\":\"451bf63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0554458\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"992e6db\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f0c262d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cca9254\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86b910f\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f03e2ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a61d7c7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Do I need to pay anything for the ATM? \",\"_id\":\"482adc5\",\"faq_answer\":\"No. Installation, delivery, programming, and setup are 100% free.\"},{\"tab_title\":\"Who loads the machine with cash? \",\"_id\":\"4380af5\",\"faq_answer\":\"We handle all cash loading, servicing, and replenishment \\u2014 you do nothing.\"},{\"tab_title\":\"Will the ATM take up a lot of space? \",\"_id\":\"c35cff9\",\"faq_answer\":\"No. Modern ATMs have a small footprint and can fit in tight spaces or unused corners. \"},{\"tab_title\":\"Do I have to sign a long-term contract? \",\"faq_answer\":\"We use a straightforward placement agreement, but our terms are flexible. If the machine doesn\\u2019t perform well, we relocate it \\u2014 simple and stress-free. \\n\",\"_id\":\"8c2dd3d\"},{\"tab_title\":\"How do I contact you if I need help? \",\"faq_answer\":\"You get direct phone\\/text access to a local operator in Los Angeles. We handle all service, monitoring, and maintenance. If an issue occurs, we take care of it promptly. \\n\",\"_id\":\"f1a238b\"},{\"tab_title\":\"What types of businesses benefit the most? \",\"faq_answer\":\"Salons, barbershops, dispensaries, smoke shops, wellness spas, convenience stores, and\\nretail locations. \",\"_id\":\"0fd0a6e\"},{\"tab_title\":\"How soon can we install? \",\"faq_answer\":\"Typically, within 7\\u201310 business days depending on availability. \",\"_id\":\"72c7205\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"faq_items_border_color\":\"#FAFAFA\",\"question_bg_color\":\"#FAFAFA\",\"question_border_border\":\"solid\",\"question_border_color\":\"#EB0A0A00\",\"question_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2ecedb5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"\",\"faq_items_border_color_hover\":\"\",\"question_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"question_bg_color_active\":\"globals\\/colors?id=astglobalcolor0\",\"question_text_color_active\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":false}]'),
(7280, 755, '_elementor_page_settings', 'a:0:{}'),
(7283, 756, '_wp_page_template', 'elementor_header_footer'),
(7285, 756, '_elementor_edit_mode', 'builder'),
(7286, 756, '_elementor_template_type', 'wp-page'),
(7287, 756, '_elementor_version', '3.33.0'),
(7288, 756, '_elementor_pro_version', '3.25.4'),
(7289, 756, '_elementor_data', '[{\"id\":\"9e899bf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bfb3f32\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"246b180\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f17ea2d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d8a77a1\"}]},\"elements\":[{\"id\":\"451bf63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0554458\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"992e6db\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f0c262d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cca9254\"}]},\"elements\":[{\"id\":\"86b910f\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f03e2ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a61d7c7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"FAQ Question 1\",\"_id\":\"482adc5\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},{\"tab_title\":\"FAQ Question 2\",\"_id\":\"4380af5\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},{\"tab_title\":\"FAQ Question 3\",\"_id\":\"c35cff9\",\"faq_answer\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"faq_items_border_color\":\"#FAFAFA\",\"question_bg_color\":\"#FAFAFA\",\"question_border_border\":\"solid\",\"question_border_color\":\"#EB0A0A00\",\"question_padding\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"29\",\"bottom\":\"29\",\"left\":\"29\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2ecedb5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"\",\"faq_items_border_color_hover\":\"\",\"question_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"question_bg_color_active\":\"globals\\/colors?id=astglobalcolor0\",\"question_text_color_active\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":false}]'),
(7290, 756, '_elementor_page_settings', 'a:0:{}'),
(7293, 757, '_wp_page_template', 'elementor_header_footer'),
(7295, 757, '_elementor_edit_mode', 'builder'),
(7296, 757, '_elementor_template_type', 'wp-page'),
(7297, 757, '_elementor_version', '3.33.0'),
(7298, 757, '_elementor_pro_version', '3.25.4'),
(7299, 757, '_elementor_data', '[{\"id\":\"9e899bf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bfb3f32\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"246b180\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f17ea2d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d8a77a1\"}]},\"elements\":[{\"id\":\"451bf63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0554458\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"992e6db\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f0c262d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cca9254\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86b910f\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f03e2ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a61d7c7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Do I need to pay anything for the ATM? \",\"_id\":\"482adc5\",\"faq_answer\":\"No. Installation, delivery, programming, and setup are 100% free.\"},{\"tab_title\":\"Who loads the machine with cash? \",\"_id\":\"4380af5\",\"faq_answer\":\"We handle all cash loading, servicing, and replenishment \\u2014 you do nothing.\"},{\"tab_title\":\"Will the ATM take up a lot of space? \",\"_id\":\"c35cff9\",\"faq_answer\":\"No. Modern ATMs have a small footprint and can fit in tight spaces or unused corners. \"},{\"tab_title\":\"Do I have to sign a long-term contract? \",\"faq_answer\":\"We use a straightforward placement agreement, but our terms are flexible. If the machine doesn\\u2019t perform well, we relocate it \\u2014 simple and stress-free. \\n\",\"_id\":\"8c2dd3d\"},{\"tab_title\":\"How do I contact you if I need help? \",\"faq_answer\":\"You get direct phone\\/text access to a local operator in Los Angeles. We handle all service, monitoring, and maintenance. If an issue occurs, we take care of it promptly. \\n\",\"_id\":\"f1a238b\"},{\"tab_title\":\"What types of businesses benefit the most? \",\"faq_answer\":\"Salons, barbershops, dispensaries, smoke shops, wellness spas, convenience stores, and\\nretail locations. \",\"_id\":\"0fd0a6e\"},{\"tab_title\":\"How soon can we install? \",\"faq_answer\":\"Typically, within 7\\u201310 business days depending on availability. \",\"_id\":\"72c7205\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"faq_items_border_color\":\"#FAFAFA\",\"question_bg_color\":\"#FAFAFA\",\"question_border_border\":\"solid\",\"question_border_color\":\"#EB0A0A00\",\"question_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2ecedb5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"\",\"faq_items_border_color_hover\":\"\",\"question_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"question_bg_color_active\":\"globals\\/colors?id=astglobalcolor0\",\"question_text_color_active\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":false}]'),
(7335, 739, '_elementor_page_settings', 'a:0:{}'),
(7336, 739, '_elementor_controls_usage', 'a:3:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"pp-faq\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_accordion_faqs\";a:1:{s:4:\"tabs\";i:1;}}s:5:\"style\";a:2:{s:23:\"section_faq_items_style\";a:2:{s:25:\"faqs_items_bottom_spacing\";i:1;s:22:\"faq_items_border_color\";i:1;}s:23:\"section_questions_style\";a:8:{s:17:\"question_bg_color\";i:1;s:22:\"question_border_border\";i:1;s:21:\"question_border_color\";i:1;s:25:\"question_text_color_hover\";i:1;s:23:\"question_bg_color_hover\";i:1;s:26:\"question_text_color_active\";i:1;s:24:\"question_bg_color_active\";i:1;s:16:\"question_padding\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:3:{s:13:\"content_width\";i:1;s:5:\"width\";i:1;s:14:\"flex_direction\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:2:{s:16:\"_flex_align_self\";i:1;s:7:\"padding\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}}}}}'),
(7313, 758, '_elementor_page_settings', 'a:0:{}'),
(7316, 759, '_wp_page_template', 'elementor_header_footer'),
(7318, 759, '_elementor_edit_mode', 'builder'),
(7319, 759, '_elementor_template_type', 'wp-page'),
(7320, 759, '_elementor_version', '3.33.0'),
(7321, 759, '_elementor_pro_version', '3.25.4'),
(7322, 759, '_elementor_data', '[{\"id\":\"9e899bf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bfb3f32\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"246b180\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f17ea2d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d8a77a1\"}]},\"elements\":[{\"id\":\"451bf63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0554458\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"992e6db\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f0c262d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cca9254\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86b910f\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f03e2ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a61d7c7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Do I need to pay anything for the ATM? \",\"_id\":\"482adc5\",\"faq_answer\":\"No. Installation, delivery, programming, and setup are 100% free.\"},{\"tab_title\":\"Who loads the machine with cash? \",\"_id\":\"4380af5\",\"faq_answer\":\"We handle all cash loading, servicing, and replenishment \\u2014 you do nothing.\"},{\"tab_title\":\"Will the ATM take up a lot of space? \",\"_id\":\"c35cff9\",\"faq_answer\":\"No. Modern ATMs have a small footprint and can fit in tight spaces or unused corners. \"},{\"tab_title\":\"Do I have to sign a long-term contract? \",\"faq_answer\":\"We use a straightforward placement agreement, but our terms are flexible. If the machine doesn\\u2019t perform well, we relocate it \\u2014 simple and stress-free. \\n\",\"_id\":\"8c2dd3d\"},{\"tab_title\":\"How do I contact you if I need help? \",\"faq_answer\":\"You get direct phone\\/text access to a local operator in Los Angeles. We handle all service, monitoring, and maintenance. If an issue occurs, we take care of it promptly. \\n\",\"_id\":\"f1a238b\"},{\"tab_title\":\"What types of businesses benefit the most? \",\"faq_answer\":\"Salons, barbershops, dispensaries, smoke shops, wellness spas, convenience stores, and\\nretail locations. \",\"_id\":\"0fd0a6e\"},{\"tab_title\":\"How soon can we install? \",\"faq_answer\":\"Typically, within 7\\u201310 business days depending on availability. \",\"_id\":\"72c7205\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"faq_items_border_color\":\"#FAFAFA\",\"question_bg_color\":\"#FAFAFA\",\"question_border_border\":\"solid\",\"question_border_color\":\"#EB0A0A00\",\"question_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2ecedb5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"\",\"faq_items_border_color_hover\":\"\",\"question_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"question_bg_color_active\":\"globals\\/colors?id=astglobalcolor0\",\"question_text_color_active\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":false}]'),
(7323, 759, '_elementor_page_settings', 'a:0:{}'),
(7326, 760, '_wp_page_template', 'elementor_header_footer'),
(7328, 760, '_elementor_edit_mode', 'builder'),
(7329, 760, '_elementor_template_type', 'wp-page'),
(7330, 760, '_elementor_version', '3.33.0'),
(7331, 760, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7332, 760, '_elementor_data', '[{\"id\":\"9e899bf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bfb3f32\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"246b180\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f17ea2d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d8a77a1\"}]},\"elements\":[{\"id\":\"451bf63\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":84,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0554458\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"992e6db\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f0c262d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cca9254\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86b910f\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f03e2ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a61d7c7\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Do I need to pay anything for the ATM? \",\"_id\":\"482adc5\",\"faq_answer\":\"No. Installation, delivery, programming, and setup are 100% free.\"},{\"tab_title\":\"Who loads the machine with cash? \",\"_id\":\"4380af5\",\"faq_answer\":\"We handle all cash loading, servicing, and replenishment \\u2014 you do nothing.\"},{\"tab_title\":\"Will the ATM take up a lot of space? \",\"_id\":\"c35cff9\",\"faq_answer\":\"No. Modern ATMs have a small footprint and can fit in tight spaces or unused corners. \"},{\"tab_title\":\"Do I have to sign a long-term contract? \",\"faq_answer\":\"We use a straightforward placement agreement, but our terms are flexible. If the machine doesn\\u2019t perform well, we relocate it \\u2014 simple and stress-free. \\n\",\"_id\":\"8c2dd3d\"},{\"tab_title\":\"How do I contact you if I need help? \",\"faq_answer\":\"You get direct phone\\/text access to a local operator in Los Angeles. We handle all service, monitoring, and maintenance. If an issue occurs, we take care of it promptly. \\n\",\"_id\":\"f1a238b\"},{\"tab_title\":\"What types of businesses benefit the most? \",\"faq_answer\":\"Salons, barbershops, dispensaries, smoke shops, wellness spas, convenience stores, and\\nretail locations. \",\"_id\":\"0fd0a6e\"},{\"tab_title\":\"How soon can we install? \",\"faq_answer\":\"Typically, within 7\\u201310 business days depending on availability. \",\"_id\":\"72c7205\"}],\"faqs_items_bottom_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"faq_items_border_color\":\"#FAFAFA\",\"question_bg_color\":\"#E0E1E28C\",\"question_border_border\":\"solid\",\"question_border_color\":\"#EB0A0A00\",\"question_text_color_hover\":\"#FFFFFF\",\"question_bg_color_hover\":\"#0a578e\",\"question_text_color_active\":\"#FFFFFF\",\"question_bg_color_active\":\"#0a578e\",\"question_padding\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"2ecedb5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"question_bg_color\":\"\",\"faq_items_border_color_hover\":\"\",\"question_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"question_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"question_bg_color_active\":\"globals\\/colors?id=astglobalcolor0\",\"question_text_color_active\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-faq\"}],\"isInner\":true}],\"isInner\":false}]'),
(7339, 761, '_edit_last', '1'),
(7340, 761, '_edit_lock', '1764075365:1'),
(7341, 761, '_wp_page_template', 'elementor_header_footer'),
(7348, 761, 'ast-featured-img', 'disabled'),
(7344, 761, 'site-sidebar-layout', 'no-sidebar'),
(7345, 761, 'ast-site-content-layout', 'full-width-container'),
(7346, 761, 'site-content-style', 'default'),
(7347, 761, 'site-sidebar-style', 'default'),
(7349, 761, 'astra-migrate-meta-layouts', 'set'),
(7350, 761, 'ast-breadcrumbs-content', 'disabled'),
(7351, 761, 'theme-transparent-header-meta', 'default'),
(7352, 763, '_menu_item_type', 'post_type'),
(7353, 763, '_menu_item_menu_item_parent', '0'),
(7354, 763, '_menu_item_object_id', '761'),
(7355, 763, '_menu_item_object', 'page'),
(7356, 763, '_menu_item_target', ''),
(7357, 763, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(7358, 763, '_menu_item_xfn', ''),
(7359, 763, '_menu_item_url', ''),
(7368, 764, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(8926, 44, '_elementor_page_settings', 'a:0:{}'),
(8927, 44, '_elementor_controls_usage', 'a:6:{s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:2;s:10:\"link_click\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_icon_style\";a:1:{s:10:\"icon_color\";i:2;}s:18:\"section_text_style\";a:1:{s:10:\"text_color\";i:2;}s:17:\"section_icon_list\";a:2:{s:17:\"icon_align_mobile\";i:2;s:10:\"icon_align\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:6:{s:14:\"flex_direction\";i:7;s:13:\"content_width\";i:5;s:5:\"width\";i:4;s:8:\"flex_gap\";i:2;s:20:\"flex_justify_content\";i:2;s:10:\"min_height\";i:1;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:8;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:3:{s:7:\"padding\";i:6;s:16:\"_flex_align_self\";i:1;s:20:\"e_display_conditions\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:8;}s:15:\"section_effects\";a:5:{s:6:\"sticky\";i:1;s:9:\"sticky_on\";i:1;s:21:\"sticky_effects_offset\";i:1;s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:5:\"align\";i:1;s:5:\"width\";i:1;s:5:\"space\";i:1;s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:16:\"pp-advanced-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:2:{s:11:\"align_items\";i:1;s:9:\"menu_type\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main_menu\";a:1:{s:29:\"pointer_color_menu_item_hover\";i:1;}s:12:\"style_toggle\";a:1:{s:23:\"toggle_background_color\";i:1;}s:16:\"style_typography\";a:1:{s:26:\"menu_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:16:\"_flex_align_self\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:16:\"theme-page-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(7376, 761, '_elementor_edit_mode', 'builder'),
(7377, 761, '_astra_content_layout_flag', 'disabled'),
(7378, 761, 'ast-title-bar-display', 'disabled'),
(7379, 761, '_elementor_template_type', 'wp-page'),
(7380, 761, '_elementor_version', '3.33.0'),
(7381, 761, '_elementor_pro_version', '3.25.4'),
(7397, 761, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/cogwheel_16458123.svg\",\"id\":803},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot traffic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7383, 765, '_wp_page_template', 'elementor_header_footer'),
(7385, 765, '_elementor_edit_mode', 'builder'),
(7386, 765, '_elementor_template_type', 'wp-page'),
(7387, 765, '_elementor_version', '3.33.0'),
(7388, 765, '_elementor_pro_version', '3.25.4'),
(7389, 765, '_elementor_page_settings', 'a:0:{}'),
(7390, 766, '_wp_page_template', 'elementor_header_footer'),
(7392, 766, '_elementor_edit_mode', 'builder'),
(7393, 766, '_elementor_template_type', 'wp-page'),
(7394, 766, '_elementor_version', '3.33.0'),
(7395, 766, '_elementor_pro_version', '3.25.4'),
(7396, 766, '_elementor_page_settings', 'a:0:{}'),
(7398, 767, '_wp_page_template', 'elementor_header_footer'),
(7400, 767, '_elementor_edit_mode', 'builder'),
(7401, 767, '_elementor_template_type', 'wp-page'),
(7402, 767, '_elementor_version', '3.33.0'),
(7403, 767, '_elementor_pro_version', '3.25.4'),
(7404, 767, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}]},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(7409, 768, '_wp_page_template', 'elementor_header_footer'),
(7411, 768, '_elementor_edit_mode', 'builder'),
(7412, 768, '_elementor_template_type', 'wp-page'),
(7413, 768, '_elementor_version', '3.33.0'),
(7414, 768, '_elementor_pro_version', '3.25.4'),
(7415, 768, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}]},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(7468, 776, '_elementor_template_type', 'wp-page'),
(7469, 776, '_elementor_version', '3.33.0'),
(7470, 776, '_elementor_pro_version', '3.25.4'),
(7471, 776, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}]},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, tra\\u01afic, and business needs to ensure a strong fit.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Quick Consultation \",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, tra\\u01afic, and business needs to ensure a strong fit.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"Quick Consultation \",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, tra\\u01afic, and business needs to ensure a strong fit.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"Quick Consultation \",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, tra\\u01afic, and business needs to ensure a strong fit.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7416, 768, '_elementor_page_settings', 'a:0:{}'),
(7419, 769, '_wp_page_template', 'elementor_header_footer'),
(7421, 769, '_elementor_edit_mode', 'builder'),
(7422, 769, '_elementor_template_type', 'wp-page'),
(7423, 769, '_elementor_version', '3.33.0'),
(7424, 769, '_elementor_pro_version', '3.25.4'),
(7425, 769, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}]},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(7426, 769, '_elementor_page_settings', 'a:0:{}'),
(7429, 770, '_wp_page_template', 'elementor_header_footer'),
(7431, 770, '_elementor_edit_mode', 'builder'),
(7432, 770, '_elementor_template_type', 'wp-page'),
(7433, 770, '_elementor_version', '3.33.0'),
(7434, 770, '_elementor_pro_version', '3.25.4'),
(7435, 770, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}]},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, tra\\u01afic, and business needs to ensure a strong fit.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Quick Consultation \",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, tra\\u01afic, and business needs to ensure a strong fit.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"Quick Consultation \",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, tra\\u01afic, and business needs to ensure a strong fit.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"Quick Consultation \",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, tra\\u01afic, and business needs to ensure a strong fit.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7465, 776, '_wp_page_template', 'elementor_header_footer'),
(7467, 776, '_elementor_edit_mode', 'builder'),
(7493, 779, '_wp_page_template', 'elementor_header_footer'),
(7495, 779, '_elementor_edit_mode', 'builder'),
(7496, 779, '_elementor_template_type', 'wp-page'),
(7497, 779, '_elementor_version', '3.33.0'),
(7498, 779, '_elementor_pro_version', '3.25.4'),
(7499, 779, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}]},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/productivity_7495285.svg\",\"id\":773},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7500, 779, '_elementor_page_settings', 'a:0:{}'),
(7501, 780, '_wp_page_template', 'elementor_header_footer'),
(7503, 780, '_elementor_edit_mode', 'builder'),
(7504, 780, '_elementor_template_type', 'wp-page'),
(7505, 780, '_elementor_version', '3.33.0'),
(7506, 780, '_elementor_pro_version', '3.25.4'),
(7507, 780, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}]},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/productivity_7495285.svg\",\"id\":773},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7486, 778, '_elementor_template_type', 'wp-page'),
(7487, 778, '_elementor_version', '3.33.0'),
(7488, 778, '_elementor_pro_version', '3.25.4'),
(7489, 778, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}]},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/productivity_7495285.svg\",\"id\":773},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7483, 778, '_wp_page_template', 'elementor_header_footer'),
(7485, 778, '_elementor_edit_mode', 'builder'),
(7453, 772, '_wp_attached_file', '2025/11/chat_12839357-1.svg'),
(7454, 772, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:4228;s:5:\"width\";i:500;s:6:\"height\";i:500;}'),
(7456, 773, '_wp_attached_file', '2025/11/productivity_7495285.svg'),
(7457, 773, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3385;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(7459, 774, '_wp_attached_file', '2025/11/delivery_2676600.svg'),
(7460, 774, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3453;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(7462, 775, '_wp_attached_file', '2025/11/welfare_16848953.svg'),
(7463, 775, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3689;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(7472, 776, '_elementor_page_settings', 'a:0:{}'),
(7474, 777, '_wp_page_template', 'elementor_header_footer'),
(7476, 777, '_elementor_edit_mode', 'builder'),
(7477, 777, '_elementor_template_type', 'wp-page'),
(7478, 777, '_elementor_version', '3.33.0'),
(7479, 777, '_elementor_pro_version', '3.25.4'),
(7480, 777, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}]},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, tra\\u01afic, and business needs to ensure a strong fit.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Quick Consultation \",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, tra\\u01afic, and business needs to ensure a strong fit.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"Quick Consultation \",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, tra\\u01afic, and business needs to ensure a strong fit.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"Quick Consultation \",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, tra\\u01afic, and business needs to ensure a strong fit.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7481, 777, '_elementor_page_settings', 'a:0:{}'),
(7508, 780, '_elementor_page_settings', 'a:0:{}'),
(7509, 781, '_wp_page_template', 'elementor_header_footer'),
(7511, 781, '_elementor_edit_mode', 'builder'),
(7512, 781, '_elementor_template_type', 'wp-page'),
(7513, 781, '_elementor_version', '3.33.0'),
(7514, 781, '_elementor_pro_version', '3.25.4'),
(7515, 781, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/productivity_7495285.svg\",\"id\":773},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7520, 782, '_wp_page_template', 'elementor_header_footer'),
(7522, 782, '_elementor_edit_mode', 'builder'),
(7523, 782, '_elementor_template_type', 'wp-page'),
(7524, 782, '_elementor_version', '3.33.0'),
(7525, 782, '_elementor_pro_version', '3.25.4'),
(7526, 782, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/productivity_7495285.svg\",\"id\":773},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7553, 785, '_wp_page_template', 'elementor_header_footer'),
(7555, 785, '_elementor_edit_mode', 'builder'),
(7556, 785, '_elementor_template_type', 'wp-page'),
(7557, 785, '_elementor_version', '3.33.0'),
(7558, 785, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7559, 785, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/productivity_7495285.svg\",\"id\":773},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7638, 794, '_elementor_page_settings', 'a:0:{}'),
(7639, 795, '_wp_page_template', 'elementor_header_footer'),
(7641, 795, '_elementor_edit_mode', 'builder'),
(7642, 795, '_elementor_template_type', 'wp-page'),
(7643, 795, '_elementor_version', '3.33.0'),
(7644, 795, '_elementor_pro_version', '3.25.4'),
(7645, 795, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/easy-installation_4961619.svg\",\"id\":790},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7646, 795, '_elementor_page_settings', 'a:0:{}'),
(7649, 796, '_elementor_edit_mode', 'builder'),
(7650, 796, '_elementor_template_type', 'wp-page'),
(7651, 796, '_elementor_version', '3.33.0'),
(7652, 796, '_elementor_pro_version', '3.25.4'),
(7653, 796, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/easy-installation_4961619.svg\",\"id\":790},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7739, 806, '_wp_page_template', 'elementor_header_footer'),
(7678, 799, '_wp_page_template', 'elementor_header_footer'),
(7658, 797, '_wp_page_template', 'elementor_header_footer'),
(7660, 797, '_elementor_edit_mode', 'builder'),
(7661, 797, '_elementor_template_type', 'wp-page'),
(7662, 797, '_elementor_version', '3.33.0'),
(7663, 797, '_elementor_pro_version', '3.25.4'),
(7664, 797, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/easy-installation_4961619.svg\",\"id\":790},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7527, 782, '_elementor_page_settings', 'a:0:{}'),
(7530, 783, '_wp_page_template', 'elementor_header_footer'),
(7532, 783, '_elementor_edit_mode', 'builder'),
(7533, 783, '_elementor_template_type', 'wp-page'),
(7534, 783, '_elementor_version', '3.33.0'),
(7535, 783, '_elementor_pro_version', '3.25.4'),
(7536, 783, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/productivity_7495285.svg\",\"id\":773},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7537, 783, '_elementor_page_settings', 'a:0:{}'),
(7540, 784, '_wp_page_template', 'elementor_header_footer'),
(7542, 784, '_elementor_edit_mode', 'builder'),
(7543, 784, '_elementor_template_type', 'wp-page'),
(7544, 784, '_elementor_version', '3.33.0'),
(7545, 784, '_elementor_pro_version', '3.25.4'),
(7546, 784, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/productivity_7495285.svg\",\"id\":773},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7647, 796, '_wp_page_template', 'elementor_header_footer'),
(7621, 793, '_wp_page_template', 'elementor_header_footer'),
(7603, 791, '_wp_page_template', 'elementor_header_footer'),
(7605, 791, '_elementor_edit_mode', 'builder'),
(7606, 791, '_elementor_template_type', 'wp-page'),
(7607, 791, '_elementor_version', '3.33.0'),
(7608, 791, '_elementor_pro_version', '3.25.4'),
(7609, 791, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/productivity_7495285.svg\",\"id\":773},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7560, 785, '_elementor_page_settings', 'a:0:{}'),
(7563, 786, '_wp_page_template', 'elementor_header_footer'),
(7565, 786, '_elementor_edit_mode', 'builder'),
(7566, 786, '_elementor_template_type', 'wp-page'),
(7567, 786, '_elementor_version', '3.33.0'),
(7568, 786, '_elementor_pro_version', '3.25.4'),
(7569, 786, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/productivity_7495285.svg\",\"id\":773},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7570, 786, '_elementor_page_settings', 'a:0:{}'),
(7573, 787, '_wp_page_template', 'elementor_header_footer'),
(7575, 787, '_elementor_edit_mode', 'builder'),
(7576, 787, '_elementor_template_type', 'wp-page'),
(7577, 787, '_elementor_version', '3.33.0'),
(7578, 787, '_elementor_pro_version', '3.25.4'),
(7579, 787, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/productivity_7495285.svg\",\"id\":773},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7631, 794, '_wp_page_template', 'elementor_header_footer'),
(7633, 794, '_elementor_edit_mode', 'builder'),
(7634, 794, '_elementor_template_type', 'wp-page'),
(7635, 794, '_elementor_version', '3.33.0'),
(7636, 794, '_elementor_pro_version', '3.25.4'),
(7637, 794, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/easy-installation_4961619.svg\",\"id\":790},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7586, 788, '_wp_attached_file', '2025/11/efficiency_10277836.svg'),
(7587, 788, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:4189;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(7623, 793, '_elementor_edit_mode', 'builder'),
(7624, 793, '_elementor_template_type', 'wp-page'),
(7625, 793, '_elementor_version', '3.33.0'),
(7626, 793, '_elementor_pro_version', '3.25.4'),
(7627, 793, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/easy-installation_4961619.svg\",\"id\":790},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7600, 790, '_wp_attached_file', '2025/11/easy-installation_4961619.svg'),
(7601, 790, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3971;s:5:\"width\";i:682;s:6:\"height\";i:682;}'),
(7610, 791, '_elementor_page_settings', 'a:0:{}'),
(7612, 792, '_wp_page_template', 'elementor_header_footer'),
(7614, 792, '_elementor_edit_mode', 'builder'),
(7615, 792, '_elementor_template_type', 'wp-page'),
(7616, 792, '_elementor_version', '3.33.0'),
(7617, 792, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7618, 792, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/productivity_7495285.svg\",\"id\":773},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7619, 792, '_elementor_page_settings', 'a:0:{}'),
(7705, 802, '_wp_page_template', 'elementor_header_footer'),
(7689, 800, '_wp_page_template', 'elementor_header_footer'),
(7691, 800, '_elementor_edit_mode', 'builder'),
(7692, 800, '_elementor_template_type', 'wp-page'),
(7693, 800, '_elementor_version', '3.33.0'),
(7694, 800, '_elementor_pro_version', '3.25.4'),
(7695, 800, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/easy-installation_4961619.svg\",\"id\":790},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7696, 800, '_elementor_page_settings', 'a:0:{}'),
(7697, 801, '_wp_page_template', 'elementor_header_footer'),
(7699, 801, '_elementor_edit_mode', 'builder'),
(7700, 801, '_elementor_template_type', 'wp-page'),
(7701, 801, '_elementor_version', '3.33.0'),
(7702, 801, '_elementor_pro_version', '3.25.4'),
(7703, 801, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/easy-installation_4961619.svg\",\"id\":790},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7704, 801, '_elementor_page_settings', 'a:0:{}'),
(7707, 802, '_elementor_edit_mode', 'builder'),
(7708, 802, '_elementor_template_type', 'wp-page'),
(7709, 802, '_elementor_version', '3.33.0'),
(7710, 802, '_elementor_pro_version', '3.25.4'),
(7711, 802, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/easy-installation_4961619.svg\",\"id\":790},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7719, 804, '_wp_page_template', 'elementor_header_footer'),
(7721, 804, '_elementor_edit_mode', 'builder'),
(7722, 804, '_elementor_template_type', 'wp-page'),
(7723, 804, '_elementor_version', '3.33.0'),
(7724, 804, '_elementor_pro_version', '3.25.4'),
(7725, 804, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/easy-installation_4961619.svg\",\"id\":790},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7665, 797, '_elementor_page_settings', 'a:0:{}'),
(7668, 798, '_wp_page_template', 'elementor_header_footer'),
(7670, 798, '_elementor_edit_mode', 'builder'),
(7671, 798, '_elementor_template_type', 'wp-page'),
(7672, 798, '_elementor_version', '3.33.0'),
(7673, 798, '_elementor_pro_version', '3.25.4'),
(7674, 798, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/easy-installation_4961619.svg\",\"id\":790},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7675, 798, '_elementor_page_settings', 'a:0:{}'),
(7680, 799, '_elementor_edit_mode', 'builder'),
(7681, 799, '_elementor_template_type', 'wp-page'),
(7682, 799, '_elementor_version', '3.33.0'),
(7683, 799, '_elementor_pro_version', '3.25.4'),
(7684, 799, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/easy-installation_4961619.svg\",\"id\":790},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(8544, 889, '_wp_page_template', 'elementor_header_footer'),
(8524, 887, '_wp_page_template', 'elementor_header_footer'),
(8526, 887, '_elementor_edit_mode', 'builder'),
(8527, 887, '_elementor_template_type', 'wp-page'),
(8528, 887, '_elementor_version', '3.33.0'),
(8529, 887, '_elementor_pro_version', '3.25.4'),
(8530, 887, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/cogwheel_16458123.svg\",\"id\":803},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7716, 803, '_wp_attached_file', '2025/11/cogwheel_16458123.svg'),
(7717, 803, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:6947;s:5:\"width\";i:128;s:6:\"height\";i:128;}'),
(7726, 804, '_elementor_page_settings', 'a:0:{}'),
(7729, 805, '_wp_page_template', 'elementor_header_footer'),
(7731, 805, '_elementor_edit_mode', 'builder'),
(7732, 805, '_elementor_template_type', 'wp-page'),
(7733, 805, '_elementor_version', '3.33.0'),
(7734, 805, '_elementor_pro_version', '3.25.4'),
(7735, 805, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/easy-installation_4961619.svg\",\"id\":790},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7736, 805, '_elementor_page_settings', 'a:0:{}'),
(7741, 806, '_elementor_edit_mode', 'builder'),
(7742, 806, '_elementor_template_type', 'wp-page'),
(7743, 806, '_elementor_version', '3.33.0'),
(7744, 806, '_elementor_pro_version', '3.25.4'),
(7745, 806, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/cogwheel_16458123.svg\",\"id\":803},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(8553, 761, '_elementor_page_settings', 'a:0:{}'),
(8554, 761, '_elementor_controls_usage', 'a:3:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:20:\"pp-info-box-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_info_boxes\";a:5:{s:13:\"pp_info_boxes\";i:1;s:6:\"layout\";i:1;s:7:\"columns\";i:1;s:20:\"columns_mobile_extra\";i:1;s:14:\"title_html_tag\";i:1;}}s:5:\"style\";a:3:{s:22:\"section_info_box_style\";a:4:{s:30:\"info_box_background_background\";i:1;s:25:\"info_box_background_color\";i:1;s:22:\"info_box_border_radius\";i:1;s:16:\"info_box_padding\";i:1;}s:27:\"section_info_box_icon_style\";a:2:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;}s:28:\"section_info_box_title_style\";a:1:{s:12:\"title_margin\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:13:\"content_width\";i:1;s:14:\"flex_direction\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:2;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}}'),
(8155, 849, '_elementor_pro_version', '3.25.4'),
(7781, 810, '_wp_page_template', 'elementor_header_footer'),
(7782, 810, '_elementor_edit_mode', 'builder'),
(7783, 810, '_elementor_template_type', 'wp-page'),
(7784, 810, '_elementor_version', '3.33.0'),
(7785, 810, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7786, 810, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7770, 808, '_elementor_page_settings', 'a:0:{}'),
(7772, 809, '_wp_page_template', 'elementor_header_footer'),
(7773, 809, '_elementor_edit_mode', 'builder'),
(7774, 809, '_elementor_template_type', 'wp-page'),
(7775, 809, '_elementor_version', '3.33.0'),
(7776, 809, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7777, 809, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7779, 809, '_elementor_page_settings', 'a:0:{}'),
(8153, 849, '_elementor_template_type', 'wp-page'),
(7826, 814, '_wp_page_template', 'elementor_header_footer'),
(7827, 814, '_elementor_edit_mode', 'builder'),
(7828, 814, '_elementor_template_type', 'wp-page'),
(7829, 814, '_elementor_version', '3.33.0'),
(7830, 814, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7831, 814, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7800, 811, '_elementor_page_settings', 'a:0:{}'),
(7803, 812, '_wp_page_template', 'elementor_header_footer'),
(7804, 812, '_elementor_edit_mode', 'builder'),
(7805, 812, '_elementor_template_type', 'wp-page'),
(7806, 812, '_elementor_version', '3.33.0'),
(7807, 812, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7808, 812, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7810, 812, '_elementor_page_settings', 'a:0:{}'),
(7813, 813, '_wp_page_template', 'elementor_header_footer'),
(7814, 813, '_elementor_edit_mode', 'builder'),
(7815, 813, '_elementor_template_type', 'wp-page'),
(7816, 813, '_elementor_version', '3.33.0'),
(7817, 813, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7818, 813, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7967, 830, '_wp_page_template', 'elementor_header_footer'),
(7895, 821, '_wp_page_template', 'elementor_header_footer'),
(7875, 819, '_wp_page_template', 'elementor_header_footer'),
(7876, 819, '_elementor_edit_mode', 'builder'),
(7877, 819, '_elementor_template_type', 'wp-page'),
(7878, 819, '_elementor_version', '3.33.0'),
(7879, 819, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7880, 819, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7833, 814, '_elementor_page_settings', 'a:0:{}'),
(7836, 815, '_wp_page_template', 'elementor_header_footer'),
(7837, 815, '_elementor_edit_mode', 'builder'),
(7838, 815, '_elementor_template_type', 'wp-page'),
(7839, 815, '_elementor_version', '3.33.0'),
(7840, 815, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7841, 815, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7843, 815, '_elementor_page_settings', 'a:0:{}'),
(8151, 849, '_wp_page_template', 'elementor_header_footer'),
(8152, 849, '_elementor_edit_mode', 'builder'),
(7846, 816, '_wp_page_template', 'elementor_header_footer'),
(7847, 816, '_elementor_edit_mode', 'builder'),
(7848, 816, '_elementor_template_type', 'wp-page'),
(7849, 816, '_elementor_version', '3.33.0'),
(7850, 816, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7851, 816, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7932, 826, '_wp_page_template', 'elementor_header_footer'),
(7912, 824, '_wp_page_template', 'elementor_header_footer'),
(7913, 824, '_elementor_edit_mode', 'builder'),
(7914, 824, '_elementor_template_type', 'wp-page'),
(7915, 824, '_elementor_version', '3.33.0'),
(7916, 824, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7917, 824, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Hubspot-image-3-3.webp\",\"id\":818,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7866, 817, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7873, 818, '_wp_attached_file', '2025/11/Hubspot-image-3-3.webp'),
(7874, 818, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1110;s:6:\"height\";i:555;s:4:\"file\";s:30:\"2025/11/Hubspot-image-3-3.webp\";s:8:\"filesize\";i:81134;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Hubspot-image-3-3-300x150.webp\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10958;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"Hubspot-image-3-3-1024x512.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:62098;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Hubspot-image-3-3-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5934;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Hubspot-image-3-3-768x384.webp\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:42302;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(7882, 819, '_elementor_page_settings', 'a:0:{}'),
(7885, 820, '_wp_page_template', 'elementor_header_footer'),
(7886, 820, '_elementor_edit_mode', 'builder'),
(7887, 820, '_elementor_template_type', 'wp-page'),
(7888, 820, '_elementor_version', '3.33.0'),
(7889, 820, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7890, 820, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7892, 820, '_elementor_page_settings', 'a:0:{}'),
(7896, 821, '_elementor_edit_mode', 'builder'),
(7897, 821, '_elementor_template_type', 'wp-page'),
(7898, 821, '_elementor_version', '3.33.0'),
(7899, 821, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7900, 821, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Hubspot-image-3-3.webp\",\"id\":818,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7947, 828, '_wp_page_template', 'elementor_header_footer'),
(7948, 828, '_elementor_edit_mode', 'builder'),
(7949, 828, '_elementor_template_type', 'wp-page'),
(7950, 828, '_elementor_version', '3.33.0'),
(7951, 828, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7952, 828, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-77.jpg\",\"id\":823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7908, 822, '_wp_attached_file', '2025/11/New-Project-76.jpg'),
(7909, 822, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:989;s:6:\"height\";i:555;s:4:\"file\";s:26:\"2025/11/New-Project-76.jpg\";s:8:\"filesize\";i:57677;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"New-Project-76-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12346;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"New-Project-76-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6844;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"New-Project-76-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49390;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(7910, 823, '_wp_attached_file', '2025/11/New-Project-77.jpg'),
(7911, 823, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:989;s:6:\"height\";i:555;s:4:\"file\";s:26:\"2025/11/New-Project-77.jpg\";s:8:\"filesize\";i:56782;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"New-Project-77-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12520;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"New-Project-77-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6826;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"New-Project-77-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49376;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(7919, 824, '_elementor_page_settings', 'a:0:{}'),
(7922, 825, '_wp_page_template', 'elementor_header_footer'),
(7923, 825, '_elementor_edit_mode', 'builder'),
(7924, 825, '_elementor_template_type', 'wp-page'),
(7925, 825, '_elementor_version', '3.33.0'),
(7926, 825, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7927, 825, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Hubspot-image-3-3.webp\",\"id\":818,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7929, 825, '_elementor_page_settings', 'a:0:{}'),
(7933, 826, '_elementor_edit_mode', 'builder'),
(7934, 826, '_elementor_template_type', 'wp-page'),
(7935, 826, '_elementor_version', '3.33.0'),
(7936, 826, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7937, 826, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-77.jpg\",\"id\":823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7994, 833, '_wp_page_template', 'elementor_header_footer'),
(7978, 831, '_wp_page_template', 'elementor_header_footer'),
(7979, 831, '_elementor_edit_mode', 'builder'),
(7980, 831, '_elementor_template_type', 'wp-page'),
(7981, 831, '_elementor_version', '3.33.0'),
(7982, 831, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7983, 831, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7945, 827, '_wp_attached_file', '2025/11/dfg.jpg'),
(7946, 827, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:626;s:6:\"height\";i:417;s:4:\"file\";s:15:\"2025/11/dfg.jpg\";s:8:\"filesize\";i:79043;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"dfg-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17828;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"dfg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8211;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(7954, 828, '_elementor_page_settings', 'a:0:{}'),
(7957, 829, '_wp_page_template', 'elementor_header_footer'),
(7958, 829, '_elementor_edit_mode', 'builder'),
(7959, 829, '_elementor_template_type', 'wp-page'),
(7960, 829, '_elementor_version', '3.33.0'),
(7961, 829, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7962, 829, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-77.jpg\",\"id\":823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7964, 829, '_elementor_page_settings', 'a:0:{}'),
(7968, 830, '_elementor_edit_mode', 'builder'),
(7969, 830, '_elementor_template_type', 'wp-page'),
(7970, 830, '_elementor_version', '3.33.0'),
(7971, 830, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7972, 830, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7993, 832, '_elementor_page_settings', 'a:0:{}'),
(7995, 833, '_elementor_edit_mode', 'builder'),
(7996, 833, '_elementor_template_type', 'wp-page'),
(7997, 833, '_elementor_version', '3.33.0'),
(7998, 833, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7999, 833, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8025, 836, '_wp_page_template', 'elementor_header_footer'),
(8005, 834, '_wp_page_template', 'elementor_header_footer'),
(8006, 834, '_elementor_edit_mode', 'builder'),
(8007, 834, '_elementor_template_type', 'wp-page'),
(8008, 834, '_elementor_version', '3.33.0'),
(8009, 834, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8010, 834, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8202, 853, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8116, 846, '_wp_page_template', 'elementor_header_footer'),
(8096, 844, '_wp_page_template', 'elementor_header_footer'),
(8097, 844, '_elementor_edit_mode', 'builder'),
(8098, 844, '_elementor_template_type', 'wp-page'),
(8099, 844, '_elementor_version', '3.33.0'),
(8100, 844, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8101, 844, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8197, 853, '_wp_page_template', 'elementor_header_footer'),
(8198, 853, '_elementor_edit_mode', 'builder'),
(8199, 853, '_elementor_template_type', 'wp-page'),
(8200, 853, '_elementor_version', '3.33.0'),
(8201, 853, '_elementor_pro_version', '3.25.4'),
(8012, 834, '_elementor_page_settings', 'a:0:{}'),
(8015, 835, '_wp_page_template', 'elementor_header_footer'),
(8016, 835, '_elementor_edit_mode', 'builder'),
(8017, 835, '_elementor_template_type', 'wp-page'),
(8018, 835, '_elementor_version', '3.33.0'),
(8019, 835, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8020, 835, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8022, 835, '_elementor_page_settings', 'a:0:{}'),
(8026, 836, '_elementor_edit_mode', 'builder'),
(8027, 836, '_elementor_template_type', 'wp-page'),
(8028, 836, '_elementor_version', '3.33.0'),
(8029, 836, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8030, 836, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8156, 849, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8131, 847, '_wp_page_template', 'elementor_header_footer'),
(8132, 847, '_elementor_edit_mode', 'builder'),
(8133, 847, '_elementor_template_type', 'wp-page'),
(8134, 847, '_elementor_version', '3.33.0'),
(8135, 847, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8136, 847, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8045, 837, '_elementor_page_settings', 'a:0:{}'),
(8048, 838, '_wp_page_template', 'elementor_header_footer'),
(8050, 838, '_elementor_edit_mode', 'builder'),
(8051, 838, '_elementor_template_type', 'wp-page'),
(8052, 838, '_elementor_version', '3.33.0'),
(8053, 838, '_elementor_pro_version', '3.25.4'),
(8054, 838, '_elementor_data', '[{\"id\":\"e7cdc50\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"93a2939\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eeb8e1f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2452a0b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2161e3d\"}]},\"elements\":[{\"id\":\"a6967d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b7c393\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bafde60\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79871db\"}],\"pp_display_conditions\":[{\"_id\":\"c249100\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3e6727b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/9248099-1.jpg\",\"id\":541,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"1efafb6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"081ab36\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"90dfaab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80a00a3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"144bbc0\"}],\"pp_display_conditions\":[{\"_id\":\"e2d192e\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca802c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0e0f082\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a048c2e\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c5a45d3\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d45c5c3\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Secure Swipe Solutions\",\"description_text\":\"provides reliable ATM placement services that help small and\\nmedium businesses save time, boost cashflow, and delivers an enhanced customer\\nexperience (without the headaches or hidden fees). \",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/privacy_18610789.svg\",\"id\":735},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(8055, 838, '_elementor_page_settings', 'a:0:{}'),
(8060, 839, '_elementor_edit_mode', 'builder'),
(8061, 839, '_elementor_template_type', 'wp-page'),
(8062, 839, '_elementor_version', '3.33.0'),
(8063, 839, '_elementor_pro_version', '3.25.4'),
(8064, 839, '_elementor_data', '[{\"id\":\"e7cdc50\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"93a2939\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eeb8e1f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2452a0b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2161e3d\"}]},\"elements\":[{\"id\":\"a6967d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b7c393\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bafde60\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79871db\"}],\"pp_display_conditions\":[{\"_id\":\"c249100\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3e6727b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"1efafb6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"081ab36\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"90dfaab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80a00a3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"144bbc0\"}],\"pp_display_conditions\":[{\"_id\":\"e2d192e\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca802c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0e0f082\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a048c2e\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c5a45d3\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d45c5c3\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Secure Swipe Solutions\",\"description_text\":\"provides reliable ATM placement services that help small and\\nmedium businesses save time, boost cashflow, and delivers an enhanced customer\\nexperience (without the headaches or hidden fees). \",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/privacy_18610789.svg\",\"id\":735},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(8091, 843, '_elementor_version', '3.33.0'),
(8092, 843, '_elementor_pro_version', '3.25.4'),
(8093, 843, '_elementor_data', '[{\"id\":\"e7cdc50\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"93a2939\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eeb8e1f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2452a0b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2161e3d\"}]},\"elements\":[{\"id\":\"a6967d4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1b7c393\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bafde60\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79871db\"}],\"pp_display_conditions\":[{\"_id\":\"c249100\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3e6727b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-2.jpg\",\"id\":840,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"21\",\"bottom\":\"21\",\"left\":\"21\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"1efafb6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"081ab36\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"90dfaab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"80a00a3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"144bbc0\"}],\"pp_display_conditions\":[{\"_id\":\"e2d192e\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ca802c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\",\"pp_condition_date_time_before_value\":\"2025-11-19 09:04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0e0f082\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a048c2e\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c5a45d3\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"d45c5c3\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Secure Swipe Solutions\",\"description_text\":\"provides reliable ATM placement services that help small and\\nmedium businesses save time, boost cashflow, and delivers an enhanced customer\\nexperience (without the headaches or hidden fees). \",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\",\"pp_condition_date_time_before_value\":\"2025-11-28 08:06\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/privacy_18610789.svg\",\"id\":735},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":false}]'),
(8094, 27, '_elementor_page_settings', 'a:0:{}'),
(8095, 27, '_elementor_controls_usage', 'a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:6:{s:4:\"view\";i:4;s:5:\"shape\";i:4;s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;s:13:\"selected_icon\";i:4;s:10:\"title_size\";i:4;}}s:5:\"style\";a:2:{s:17:\"section_style_box\";a:2:{s:8:\"position\";i:4;s:15:\"position_mobile\";i:4;}s:18:\"section_style_icon\";a:2:{s:9:\"icon_size\";i:4;s:12:\"icon_padding\";i:4;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}}'),
(8103, 844, '_elementor_page_settings', 'a:0:{}'),
(8106, 845, '_wp_page_template', 'elementor_header_footer'),
(8107, 845, '_elementor_edit_mode', 'builder'),
(8108, 845, '_elementor_template_type', 'wp-page'),
(8109, 845, '_elementor_version', '3.33.0'),
(8110, 845, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8111, 845, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8113, 845, '_elementor_page_settings', 'a:0:{}'),
(8117, 846, '_elementor_edit_mode', 'builder'),
(8118, 846, '_elementor_template_type', 'wp-page'),
(8119, 846, '_elementor_version', '3.33.0'),
(8120, 846, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8121, 846, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8164, 850, '_wp_page_template', 'elementor_header_footer'),
(8165, 850, '_elementor_edit_mode', 'builder'),
(8166, 850, '_elementor_template_type', 'wp-page'),
(8167, 850, '_elementor_version', '3.33.0'),
(8168, 850, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8169, 850, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8999, 6, '_elementor_css', 'a:6:{s:4:\"time\";i:1764998195;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(9000, 44, '_elementor_css', 'a:6:{s:4:\"time\";i:1764998196;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:10:\"fa-regular\";i:1;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"195ce54\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(8138, 847, '_elementor_page_settings', 'a:0:{}'),
(8141, 848, '_wp_page_template', 'elementor_header_footer'),
(8142, 848, '_elementor_edit_mode', 'builder'),
(8143, 848, '_elementor_template_type', 'wp-page'),
(8144, 848, '_elementor_version', '3.33.0'),
(8145, 848, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8146, 848, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c39574\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to o\\u01afer your customers easy access to cash, at no cost to you? \\n\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f6d4926\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9001, 44, '_elementor_css', 'a:6:{s:4:\"time\";i:1764998196;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:10:\"fa-regular\";i:1;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:7:\"195ce54\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(8148, 848, '_elementor_page_settings', 'a:0:{}'),
(9002, 369, '_elementor_css', 'a:6:{s:4:\"time\";i:1764998196;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:7;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(9003, 44, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:6:{i:0;s:16:\"widget-icon-list\";i:1;s:12:\"widget-image\";i:2;s:23:\"widget-pp-advanced-menu\";i:3;s:8:\"e-sticky\";i:4;s:14:\"widget-heading\";i:5;s:20:\"e-animation-fadeInUp\";}s:7:\"scripts\";a:5:{i:0;s:18:\"elementor-frontend\";i:1;s:16:\"jquery-smartmenu\";i:2;s:21:\"pp-smartmenu-keyboard\";i:3;s:16:\"pp-advanced-menu\";i:4;s:8:\"e-sticky\";}}'),
(9004, 44, '_elementor_element_cache', '{\"timeout\":1765354913,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-52c4e76 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"52c4e76\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-109e9e5 e-con-full e-flex e-con e-child\\\" data-id=\\\"109e9e5\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-71b887d elementor-list-item-link-inline elementor-mobile-align-center elementor-icon-list--layout-traditional elementor-widget elementor-widget-icon-list\\\" data-id=\\\"71b887d\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"mailto:admin@SecureSwipeATMs.com\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-far-envelope\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">admin@SecureSwipeATMs.com<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-e980543 e-con-full e-flex e-con e-child\\\" data-id=\\\"e980543\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-6713ce9 elementor-align-right elementor-list-item-link-inline elementor-mobile-align-center elementor-icon-list--layout-traditional elementor-widget elementor-widget-icon-list\\\" data-id=\\\"6713ce9\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"tel:818262-8674\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-phone-alt\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">(818) 262-8674<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-fa08d1f e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"fa08d1f\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;sticky&quot;:&quot;top&quot;,&quot;sticky_on&quot;:[&quot;widescreen&quot;,&quot;desktop&quot;],&quot;sticky_effects_offset&quot;:50,&quot;sticky_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-a0a2324 e-con-full e-flex e-con e-child\\\" data-id=\\\"a0a2324\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-1946668 elementor-widget elementor-widget-image\\\" data-id=\\\"1946668\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\\\">\\n\\t\\t\\t\\t\\t\\t\\t<img width=\\\"350\\\" height=\\\"168\\\" src=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/logo-3.png\\\" class=\\\"attachment-full size-full wp-image-599\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/logo-3.png 350w, https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/logo-3-300x144.png 300w\\\" sizes=\\\"(max-width: 350px) 100vw, 350px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-33c4891 e-con-full e-flex e-con e-child\\\" data-id=\\\"33c4891\\\" data-element_type=\\\"container\\\">\\n\\t\\t[elementor-element k=\\\"c4e92a2da140fd37226ab6a592ed8375\\\" data=\\\"eyJpZCI6ImE0ZjNmNTEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJhbGlnbl9pdGVtcyI6InJpZ2h0IiwibWVudV90eXBlIjoib2ZmLWNhbnZhcyIsInRvZ2dsZV9sYWJlbCI6Ik1lbnUiLCJwb2ludGVyX2NvbG9yX21lbnVfaXRlbV9ob3ZlciI6IiMwMjAxMDEwMCIsInRvZ2dsZV9iYWNrZ3JvdW5kX2NvbG9yIjoiIzAyMDEwMTAwIiwibWVudV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJtZW51X3R5cG9ncmFwaHlfZm9udF9zaXplX3RhYmxldF9leHRyYSI6eyJ1bml0IjoicHgiLCJzaXplIjoxNywic2l6ZXMiOltdfSwiX2ZsZXhfYWxpZ25fc2VsZl90YWJsZXRfZXh0cmEiOiJjZW50ZXIiLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjM2MTZjZTUifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCIsIl9fZ2xvYmFsc19fIjp7ImNvbG9yX21lbnVfaXRlbSI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjIiLCJjb2xvcl9tZW51X2l0ZW1faG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IxIiwiY29sb3JfbWVudV9pdGVtX2FjdGl2ZSI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjEiLCJ0b2dnbGVfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IwIiwidG9nZ2xlX2NvbG9yX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMSIsIm92ZXJsYXlfYmdfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0IiwibW9iaWxlX2xpbmtfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IyIiwibW9iaWxlX2xpbmtfYmdfaG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IxIiwibW9iaWxlX2xpbmtfaG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0IiwiY2xvc2VfaWNvbl9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjAifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InBwLWFkdmFuY2VkLW1lbnUifQ==\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-2ce2a97 elementor-hidden-mobile_extra elementor-hidden-mobile elementor-widget elementor-widget-button\\\" data-id=\\\"2ce2a97\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Contact Us<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"c4e92a2da140fd37226ab6a592ed8375\\\" data=\\\"eyJpZCI6IjJjOTM0NWMiLCJlbFR5cGUiOiJjb250YWluZXIiLCJzZXR0aW5ncyI6eyJmbGV4X2RpcmVjdGlvbiI6ImNvbHVtbiIsIm1pbl9oZWlnaHQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MzUwLCJzaXplcyI6W119LCJtaW5faGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoyMDAsInNpemVzIjpbXX0sImZsZXhfanVzdGlmeV9jb250ZW50IjoiY2VudGVyIiwiYmFja2dyb3VuZF9iYWNrZ3JvdW5kIjoiY2xhc3NpYyIsImJhY2tncm91bmRfaW1hZ2UiOnsidXJsIjoiaHR0cHM6XC9cL21yYXJpZi5tZVwvc2VjdXJlc3dpcGVzb2x1dGlvbnNcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzExXC9iYW5uZXItNS5qcGciLCJpZCI6MzcsInNpemUiOiIiLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5In0sImJhY2tncm91bmRfcG9zaXRpb24iOiJjZW50ZXIgY2VudGVyIiwiYmFja2dyb3VuZF9yZXBlYXQiOiJuby1yZXBlYXQiLCJiYWNrZ3JvdW5kX3NpemUiOiJjb3ZlciIsInBwX2FuaW1hdGVkX2dyYWRpZW50X2JnX2NvbG9yX2xpc3QiOlt7InBwX2FuaW1hdGVkX2dyYWRpZW50X2JnX2NvbG9yIjoiI0Y2QUQxRiIsIl9pZCI6ImJmNTdiYjgifSx7InBwX2FuaW1hdGVkX2dyYWRpZW50X2JnX2NvbG9yIjoiI0Y3NDk2QSIsIl9pZCI6IjQ0OWZjMWEifSx7InBwX2FuaW1hdGVkX2dyYWRpZW50X2JnX2NvbG9yIjoiIzU2NUFEOCIsIl9pZCI6ImMyZWVlZTcifV0sImJhY2tncm91bmRfb3ZlcmxheV9iYWNrZ3JvdW5kIjoiY2xhc3NpYyIsImVfZGlzcGxheV9jb25kaXRpb25zIjpbIltbe1wiY29uZGl0aW9uXCI6XCJwYWdlX3RpdGxlXCIsXCJjb21wYXJhdG9yXCI6XCJpc19ub3RcIixcInRpdGxlc1wiOlt7XCJpZFwiOjEwLFwidGV4dFwiOlwiSG9tZVwifV19XV0iXSwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiI1NWFmZGJhIn1dLCJfX2dsb2JhbHNfXyI6eyJiYWNrZ3JvdW5kX292ZXJsYXlfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IyIn19LCJlbGVtZW50cyI6W3siaWQiOiI1YmEwYTdjIiwiZWxUeXBlIjoiY29udGFpbmVyIiwic2V0dGluZ3MiOnsiY29udGVudF93aWR0aCI6ImZ1bGwiLCJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvcl9saXN0IjpbeyJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvciI6IiNGNkFEMUYiLCJfaWQiOiJiN2NmZTY3In0seyJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvciI6IiNGNzQ5NkEiLCJfaWQiOiIyNWZmOWI5In0seyJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvciI6IiM1NjVBRDgiLCJfaWQiOiI3OGQxMWRkIn1dLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjljMWIzZDgifV0sImFuaW1hdGlvbiI6ImZhZGVJblVwIiwiYW5pbWF0aW9uX2R1cmF0aW9uIjoic2xvdyJ9LCJlbGVtZW50cyI6W3siaWQiOiIxOTVjZTU0IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiX19keW5hbWljX18iOnsidGl0bGUiOiJbZWxlbWVudG9yLXRhZyBpZD1cIlwiIG5hbWU9XCJwYWdlLXRpdGxlXCIgc2V0dGluZ3M9XCIlN0IlMjJpbmNsdWRlX2NvbnRleHQlMjIlM0ElMjIlMjIlMkMlMjJzaG93X2hvbWVfdGl0bGUlMjIlM0ElMjIlMjIlMkMlMjJiZWZvcmUlMjIlM0ElMjIlMjIlMkMlMjJhZnRlciUyMiUzQSUyMiUyMiUyQyUyMmZhbGxiYWNrJTIyJTNBJTIyJTIyJTdEXCJdIn0sInRpdGxlIjoiQWRkIFlvdXIgSGVhZGluZyBUZXh0IEhlcmUiLCJhbGlnbiI6ImNlbnRlciIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiY2NiNjA3YyJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiX19nbG9iYWxzX18iOnsidGl0bGVfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0In19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0aGVtZS1wYWdlLXRpdGxlIn1dLCJpc0lubmVyIjp0cnVlfV0sImlzSW5uZXIiOmZhbHNlfQ==\\\"]\",\"scripts\":[],\"styles\":[]}}'),
(9009, 250, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>'),
(9005, 369, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:3:{i:0;s:14:\"widget-heading\";i:1;s:16:\"widget-icon-list\";i:2;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),
(9006, 369, '_elementor_element_cache', '{\"timeout\":1765354913,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-5a753bb e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"5a753bb\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-9372a75 e-con-full e-flex e-con e-child\\\" data-id=\\\"9372a75\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-c661f12 elementor-widget elementor-widget-heading\\\" data-id=\\\"c661f12\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">Quick Link<\\/h5>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-23ac5ef elementor-list-item-link-inline elementor-icon-list--layout-traditional elementor-widget elementor-widget-icon-list\\\" data-id=\\\"23ac5ef\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Home<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/services-snapshot\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Services Snapshot<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Why Choose Us<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/how-it-works\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">How It Works<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/faqs\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">FAQs<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Contact Us<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-c892fd9 e-con-full e-flex e-con e-child\\\" data-id=\\\"c892fd9\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-73381aa elementor-widget elementor-widget-heading\\\" data-id=\\\"73381aa\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">Contact Info<\\/h5>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-b602097 elementor-list-item-link-inline elementor-icon-list--layout-traditional elementor-widget elementor-widget-icon-list\\\" data-id=\\\"b602097\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"tel:8182628674\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-phone-alt\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Call us (818) 262-8674<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"http:\\/\\/mailto;admin@SecureSwipeATMs.com\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-far-envelope\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">admin@SecureSwipeATMs.com<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-38d1023 e-con-full e-flex e-con e-child\\\" data-id=\\\"38d1023\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-62c3f98 elementor-widget elementor-widget-google_maps\\\" data-id=\\\"62c3f98\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"google_maps.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-custom-embed\\\">\\n\\t\\t\\t<iframe loading=\\\"lazy\\\"\\n\\t\\t\\t\\t\\tsrc=\\\"https:\\/\\/maps.google.com\\/maps?q=Los%20Angeles&#038;t=m&#038;z=12&#038;output=embed&#038;iwloc=near\\\"\\n\\t\\t\\t\\t\\ttitle=\\\"Los Angeles\\\"\\n\\t\\t\\t\\t\\taria-label=\\\"Los Angeles\\\"\\n\\t\\t\\t><\\/iframe>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-0c04719 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"0c04719\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t[elementor-element k=\\\"c4e92a2da140fd37226ab6a592ed8375\\\" data=\\\"eyJpZCI6IjcwZDZjNTciLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJDb3B5cmlnaHQgXHUwMGE5MjAyNSAtIEFsbCBSaWdodHMgUmVzZXJ2ZWQuIiwiYWxpZ24iOiJjZW50ZXIiLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6ImY0YWU5OTMifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCIsIl9fZ2xvYmFsc19fIjp7InRleHRfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0In19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0ZXh0LWVkaXRvciJ9\\\"]\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(9007, 10, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:9:{i:0;s:14:\"widget-heading\";i:1;s:20:\"e-animation-fadeInUp\";i:2;s:18:\"e-animation-zoomIn\";i:3;s:15:\"widget-icon-box\";i:4;s:22:\"e-animation-fadeInLeft\";i:5;s:23:\"e-animation-fadeInRight\";i:6;s:16:\"widget-icon-list\";i:7;s:12:\"widget-image\";i:8;s:11:\"widget-form\";}s:7:\"scripts\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),
(9008, 10, '_elementor_css', 'a:6:{s:4:\"time\";i:1765268513;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:3:\"svg\";i:15;s:8:\"fa-solid\";i:16;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(9010, 267, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>'),
(9011, 331, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>'),
(9012, 332, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>'),
(9013, 646, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>'),
(9014, 647, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>'),
(9015, 648, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9016, 10, '_elementor_element_cache', '{\"timeout\":1765354913,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-468040b e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"468040b\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\\\\/\\\\\\/mrarif.me\\\\\\/secureswipesolutions\\\\\\/wp-content\\\\\\/uploads\\\\\\/2025\\\\\\/11\\\\\\/0-Atm-Cash-Withdrawal-1920X1010.mp4&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-background-video-container\\\" aria-hidden=\\\"true\\\">\\n\\t\\t\\t\\t\\t\\t\\t<video class=\\\"elementor-background-video-hosted\\\" autoplay muted playsinline loop><\\/video>\\n\\t\\t\\t\\t\\t<\\/div><div class=\\\"elementor-element elementor-element-1d73edd e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"1d73edd\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-6ae569e elementor-widget elementor-widget-heading\\\" data-id=\\\"6ae569e\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h1 class=\\\"elementor-heading-title elementor-size-default\\\">Reliable, Modern ATMs Installed in Your Business at No Cost to You<\\/h1>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"c4e92a2da140fd37226ab6a592ed8375\\\" data=\\\"eyJpZCI6IjVmNjFkNGMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJCb29zdCByZXZlbnVlLCBpbXByb3ZlIGN1c3RvbWVyIGV4cGVyaWVuY2UsIGFuZCBvZmZlciBjb252ZW5pZW50IGNhc2ggYWNjZXNzLldlIGhhbmRsZSB0aGUgaW5zdGFsbGF0aW9uLCBtYWludGVuYW5jZSwgY2FzaCBsb2FkaW5nLCBhbmQgc3VwcG9ydC5XaXRoIHplcm8gZWZmb3J0IHJlcXVpcmVkIG9uIHlvdXIgZW5kLiIsImFsaWduIjoiY2VudGVyIiwiX2VsZW1lbnRfd2lkdGgiOiJpbml0aWFsIiwiX2VsZW1lbnRfY3VzdG9tX3dpZHRoIjp7InVuaXQiOiIlIiwic2l6ZSI6NzgsInNpemVzIjpbXX0sIl9mbGV4X2FsaWduX3NlbGYiOiJjZW50ZXIiLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjA3MGU4Y2YifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCIsIl9fZ2xvYmFsc19fIjp7InRleHRfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0In0sIl9lbGVtZW50X2N1c3RvbV93aWR0aF9tb2JpbGVfZXh0cmEiOnsidW5pdCI6IiUiLCJzaXplIjoxMDAsInNpemVzIjpbXX0sIl9lbGVtZW50X2N1c3RvbV93aWR0aF9tb2JpbGUiOnsidW5pdCI6IiUiLCJzaXplIjoiIiwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRleHQtZWRpdG9yIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-1a3fc69 elementor-align-center elementor-widget elementor-widget-button\\\" data-id=\\\"1a3fc69\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Request a Free ATM<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-165609a services_style e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"165609a\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-5350a80 animated-slow elementor-invisible elementor-widget elementor-widget-heading\\\" data-id=\\\"5350a80\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;zoomIn&quot;}\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Services Snapshot<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-b454f0e e-con-full e-flex e-con e-child\\\" data-id=\\\"b454f0e\\\" data-element_type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-3385889 e-con-full animated-slow services_box_style e-flex elementor-invisible e-con e-child\\\" data-id=\\\"3385889\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-5768737 e-con-full e-flex e-con e-child\\\" data-id=\\\"5768737\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-175542c elementor-view-default elementor-widget elementor-widget-icon\\\" data-id=\\\"175542c\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-wrapper\\\">\\n\\t\\t\\t<div class=\\\"elementor-icon\\\">\\n\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" viewBox=\\\"0 0 64 64\\\"><g id=\\\"Layer_25\\\" data-name=\\\"Layer 25\\\"><path d=\\\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\\\"><\\/path><path d=\\\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\\\"><\\/path><path d=\\\"m43 5h2v9h-2z\\\"><\\/path><path d=\\\"m47 7h2v9h-2z\\\"><\\/path><path d=\\\"m19 5h2v9h-2z\\\"><\\/path><path d=\\\"m15 7h2v9h-2z\\\"><\\/path><path d=\\\"m55 5h4v2h-4z\\\"><\\/path><path d=\\\"m55 9h4v2h-4z\\\"><\\/path><path d=\\\"m55 13h4v2h-4z\\\"><\\/path><path d=\\\"m55 17h4v2h-4z\\\"><\\/path><path d=\\\"m55 21h4v2h-4z\\\"><\\/path><path d=\\\"m5 5h4v2h-4z\\\"><\\/path><path d=\\\"m5 9h4v2h-4z\\\"><\\/path><path d=\\\"m5 13h4v2h-4z\\\"><\\/path><path d=\\\"m5 17h4v2h-4z\\\"><\\/path><path d=\\\"m5 21h4v2h-4z\\\"><\\/path><path d=\\\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-751b398 e-con-full e-flex e-con e-child\\\" data-id=\\\"751b398\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;none&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-c4d696b elementor-widget elementor-widget-icon-box\\\" data-id=\\\"c4d696b\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tFree ATM Installation \\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\tWe cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-59bc92f e-con-full animated-slow services_box_style e-flex elementor-invisible e-con e-child\\\" data-id=\\\"59bc92f\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-694bbd4 e-con-full e-flex e-con e-child\\\" data-id=\\\"694bbd4\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-35e23e0 elementor-view-default elementor-widget elementor-widget-icon\\\" data-id=\\\"35e23e0\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-wrapper\\\">\\n\\t\\t\\t<div class=\\\"elementor-icon\\\">\\n\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Business_finance\\\" height=\\\"512\\\" viewBox=\\\"0 0 128 128\\\" width=\\\"512\\\"><g><path d=\\\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\\\"><\\/path><path d=\\\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\\\"><\\/path><path d=\\\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\\\"><\\/path><path d=\\\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-a271e7f e-con-full services_box_style e-flex e-con e-child\\\" data-id=\\\"a271e7f\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;none&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-a2faa86 elementor-widget elementor-widget-icon-box\\\" data-id=\\\"a2faa86\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tAll the Value, None of the Work \\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\tYou get increased foot traffic and customer convenience.We manage every detail: cash loading, \\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-60c3a6a e-con-full animated-slow services_box_style e-flex elementor-invisible e-con e-child\\\" data-id=\\\"60c3a6a\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-e0f0293 e-con-full e-flex e-con e-child\\\" data-id=\\\"e0f0293\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-03b8410 elementor-view-default elementor-widget elementor-widget-icon\\\" data-id=\\\"03b8410\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-wrapper\\\">\\n\\t\\t\\t<div class=\\\"elementor-icon\\\">\\n\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" viewBox=\\\"0 0 512 512\\\" width=\\\"512\\\" height=\\\"512\\\"><g id=\\\"OUTLINE\\\"><path d=\\\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\\\"><\\/path><rect x=\\\"192\\\" y=\\\"184\\\" width=\\\"128\\\" height=\\\"16\\\"><\\/rect><rect x=\\\"96\\\" y=\\\"224\\\" width=\\\"320\\\" height=\\\"16\\\"><\\/rect><path d=\\\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\\\"><\\/path><path d=\\\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\\\"><\\/path><rect x=\\\"96\\\" y=\\\"344\\\" width=\\\"144\\\" height=\\\"16\\\"><\\/rect><\\/g><\\/svg>\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-c1f19e4 e-con-full services_box_style e-flex e-con e-child\\\" data-id=\\\"c1f19e4\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;none&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-64d2514 elementor-widget elementor-widget-icon-box\\\" data-id=\\\"64d2514\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tFlexible, Business-Friendly Terms \\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\tNo long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-5db3418 e-con-full animated-slow services_box_style e-flex elementor-invisible e-con e-child\\\" data-id=\\\"5db3418\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-505a003 e-con-full e-flex e-con e-child\\\" data-id=\\\"505a003\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-8a912d0 elementor-view-default elementor-widget elementor-widget-icon\\\" data-id=\\\"8a912d0\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-wrapper\\\">\\n\\t\\t\\t<div class=\\\"elementor-icon\\\">\\n\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" height=\\\"512\\\" viewBox=\\\"0 0 512 512\\\" width=\\\"512\\\"><path d=\\\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\\\"><\\/path><\\/svg>\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-6cc7a56 e-con-full services_box_style e-flex e-con e-child\\\" data-id=\\\"6cc7a56\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;none&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-efce541 elementor-widget elementor-widget-icon-box\\\" data-id=\\\"efce541\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tA Smart Fit for Your Business \\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\tPerfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-0149b66 e-con-full choose_section e-flex e-con e-parent\\\" data-id=\\\"0149b66\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-5cba488 e-con-full e-flex e-con e-child\\\" data-id=\\\"5cba488\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-694c21f e-con-full choose_box_section animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"694c21f\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-70b0896 elementor-widget elementor-widget-heading\\\" data-id=\\\"70b0896\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Why Choose Us<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-9fbab00 elementor-view-stacked elementor-shape-rounded elementor-position-left elementor-mobile-position-left elementor-widget elementor-widget-icon-box\\\" data-id=\\\"9fbab00\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-icon\\\">\\n\\t\\t\\t\\t<span  class=\\\"elementor-icon\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" viewBox=\\\"0 0 512 512\\\" data-name=\\\"Layer 1\\\"><path d=\\\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\\\"><\\/path><\\/svg>\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tLocal Expertise\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\tBased in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-b26d50a elementor-view-stacked elementor-shape-rounded elementor-position-left elementor-mobile-position-left elementor-widget elementor-widget-icon-box\\\" data-id=\\\"b26d50a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-icon\\\">\\n\\t\\t\\t\\t<span  class=\\\"elementor-icon\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" height=\\\"512\\\" viewBox=\\\"0 0 512 512\\\" width=\\\"512\\\" data-name=\\\"Layer 1\\\"><path d=\\\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\\\" fill-rule=\\\"evenodd\\\"><\\/path><\\/svg>\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tHands-On Support \\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\tYou get direct communication and real accountability. No corporate runaround, ever. \\n\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-9003ac4 elementor-view-stacked elementor-shape-rounded elementor-position-left elementor-mobile-position-left elementor-widget elementor-widget-icon-box\\\" data-id=\\\"9003ac4\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-icon\\\">\\n\\t\\t\\t\\t<span  class=\\\"elementor-icon\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" viewBox=\\\"0 0 512 512\\\" data-name=\\\"Layer 1\\\"><path d=\\\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\\\" fill-rule=\\\"evenodd\\\"><\\/path><\\/svg>\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tInvested in Your Success \\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\tYour ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-877d1ea elementor-widget elementor-widget-button\\\" data-id=\\\"877d1ea\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">learn more<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-503fdb3 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"503fdb3\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-e185325 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"e185325\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-2f0bd2d elementor-widget elementor-widget-heading\\\" data-id=\\\"2f0bd2d\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h3 class=\\\"elementor-heading-title elementor-size-default\\\">Ready to offer your customers easy access to cash, at no cost to you?<\\/h3>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-221c425 elementor-align-center elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"221c425\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">We\\u2019ll reach out within 24 hours. <\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-9cb3ec2 elementor-align-center elementor-widget elementor-widget-button\\\" data-id=\\\"9cb3ec2\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Request a Free ATM<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-665abc6 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"665abc6\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-428fb30 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"428fb30\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-38bbd15 elementor-widget elementor-widget-heading\\\" data-id=\\\"38bbd15\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Our Machines <\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-3dc9e46 elementor-widget elementor-widget-heading\\\" data-id=\\\"3dc9e46\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">Modern, Reliable ATMs<\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"c4e92a2da140fd37226ab6a592ed8375\\\" data=\\\"eyJpZCI6IjA3M2Y3OTgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJXZSBwbGFjZSB1cGdyYWRlZCwgaGlnaC1wZXJmb3JtYW5jZSBtYWNoaW5lcyBkZXNpZ25lZCBmb3Igc2VjdXJpdHksIHVwdGltZSwgYW5kIGZhc3QgdHJhbnNhY3Rpb25zLiBDbGVhbiwgcHJvZmVzc2lvbmFsIGFwcGVhcmFuY2UgdGhhdCBmaXRzIHNlYW1sZXNzbHkgaW50byB5b3VyIGJ1c2luZXNzLiAiLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6Ijg2OGNhMGIifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0ZXh0LWVkaXRvciJ9\\\"]\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-40608bb e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"40608bb\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-53c0c20 e-con-full e-flex e-con e-child\\\" data-id=\\\"53c0c20\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-fb0bb12 elementor-widget elementor-widget-image\\\" data-id=\\\"fb0bb12\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"318\\\" height=\\\"609\\\" src=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\\\" class=\\\"attachment-full size-full wp-image-864\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png 318w, https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-157x300.png 157w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-91ee6f9 e-con-full elementor-hidden-mobile_extra elementor-hidden-mobile e-flex e-con e-child\\\" data-id=\\\"91ee6f9\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-b256852 elementor-widget elementor-widget-image\\\" data-id=\\\"b256852\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1500\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\\\" class=\\\"attachment-full size-full wp-image-670\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg 1500w, https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1-300x200.jpg 300w, https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1-1024x683.jpg 1024w, https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1-768x512.jpg 768w\\\" sizes=\\\"(max-width: 1500px) 100vw, 1500px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-6cb114a elementor-widget elementor-widget-image\\\" data-id=\\\"6cb114a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"667\\\" src=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\\\" class=\\\"attachment-full size-full wp-image-690\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg 1000w, https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose-300x200.jpeg 300w, https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose-768x512.jpeg 768w\\\" sizes=\\\"(max-width: 1000px) 100vw, 1000px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-152ed4b elementor-hidden-widescreen elementor-hidden-desktop elementor-hidden-tablet_extra elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"152ed4b\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-8bdb340 e-con-full e-flex e-con e-child\\\" data-id=\\\"8bdb340\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-fc4934c elementor-widget elementor-widget-heading\\\" data-id=\\\"fc4934c\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Our Machines <\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-a59077a elementor-widget elementor-widget-heading\\\" data-id=\\\"a59077a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">Modern, Reliable ATMs<\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"c4e92a2da140fd37226ab6a592ed8375\\\" data=\\\"eyJpZCI6ImJjM2M5ZmMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJXZSBwbGFjZSB1cGdyYWRlZCwgaGlnaC1wZXJmb3JtYW5jZSBtYWNoaW5lcyBkZXNpZ25lZCBmb3Igc2VjdXJpdHksIHVwdGltZSwgYW5kIGZhc3QgdHJhbnNhY3Rpb25zLiBDbGVhbiwgcHJvZmVzc2lvbmFsIGFwcGVhcmFuY2UgdGhhdCBmaXRzIHNlYW1sZXNzbHkgaW50byB5b3VyIGJ1c2luZXNzLiAiLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6Ijg2OGNhMGIifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0ZXh0LWVkaXRvciJ9\\\"]\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-009d6e3 e-con-full e-flex e-con e-child\\\" data-id=\\\"009d6e3\\\" data-element_type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-c5fe92f e-con-full e-flex e-con e-child\\\" data-id=\\\"c5fe92f\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7411c31 elementor-widget elementor-widget-image\\\" data-id=\\\"7411c31\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1500\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\\\" class=\\\"attachment-full size-full wp-image-670\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg 1500w, https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1-300x200.jpg 300w, https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1-1024x683.jpg 1024w, https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1-768x512.jpg 768w\\\" sizes=\\\"(max-width: 1500px) 100vw, 1500px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-21ba66d elementor-widget elementor-widget-image\\\" data-id=\\\"21ba66d\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1500\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\\\" class=\\\"attachment-full size-full wp-image-670\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg 1500w, https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1-300x200.jpg 300w, https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1-1024x683.jpg 1024w, https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1-768x512.jpg 768w\\\" sizes=\\\"(max-width: 1500px) 100vw, 1500px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-6bbdf72 e-con-full e-flex e-con e-child\\\" data-id=\\\"6bbdf72\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-d159c10 elementor-widget elementor-widget-image\\\" data-id=\\\"d159c10\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1500\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\\\" class=\\\"attachment-full size-full wp-image-670\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg 1500w, https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1-300x200.jpg 300w, https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1-1024x683.jpg 1024w, https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1-768x512.jpg 768w\\\" sizes=\\\"(max-width: 1500px) 100vw, 1500px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-99cf8c4 elementor-widget elementor-widget-image\\\" data-id=\\\"99cf8c4\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1500\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\\\" class=\\\"attachment-full size-full wp-image-522\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg 1500w, https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1-300x200.jpg 300w, https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1-1024x683.jpg 1024w, https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1-768x512.jpg 768w\\\" sizes=\\\"(max-width: 1500px) 100vw, 1500px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-20afde9 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"20afde9\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-c8366de e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"c8366de\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-2c037c1 elementor-widget elementor-widget-heading\\\" data-id=\\\"2c037c1\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">\\nContact us<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"c4e92a2da140fd37226ab6a592ed8375\\\" data=\\\"eyJpZCI6Ijg0NTJjOTQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJSZWFkeSB0byBhZGQgdmFsdWUgdG8geW91ciBsb2NhdGlvbj8gTGV0XHUyMDE5cyB0YWxrLiIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiYTg2Zjg0NyJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiX19nbG9iYWxzX18iOnsidGV4dF9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRleHQtZWRpdG9yIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-e1729b1 elementor-view-stacked elementor-position-left elementor-mobile-position-left elementor-shape-circle elementor-widget elementor-widget-icon-box\\\" data-id=\\\"e1729b1\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-icon\\\">\\n\\t\\t\\t\\t<a href=\\\"tel:8182628674\\\" class=\\\"elementor-icon\\\" tabindex=\\\"-1\\\" aria-label=\\\"Call us\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-phone-alt\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h6 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<a href=\\\"tel:8182628674\\\" >\\n\\t\\t\\t\\t\\t\\t\\tCall us\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\t(818) 262-8674\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7981859 elementor-view-stacked elementor-position-left elementor-mobile-position-left elementor-shape-circle elementor-widget elementor-widget-icon-box\\\" data-id=\\\"7981859\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-icon\\\">\\n\\t\\t\\t\\t<a href=\\\"mailto:admin@SecureSwipeATMs.com\\\" class=\\\"elementor-icon\\\" tabindex=\\\"-1\\\" aria-label=\\\"Email\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-far-envelope\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\\\"><\\/path><\\/svg>\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h6 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<a href=\\\"mailto:admin@SecureSwipeATMs.com\\\" >\\n\\t\\t\\t\\t\\t\\t\\tEmail\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t<\\/h6>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\tadmin@SecureSwipeATMs.com\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-90b0904 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"90b0904\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-55cafa9 elementor-button-align-stretch elementor-widget elementor-widget-form\\\" data-id=\\\"55cafa9\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;step_next_label&quot;:&quot;Next&quot;,&quot;step_previous_label&quot;:&quot;Previous&quot;,&quot;button_width&quot;:&quot;100&quot;,&quot;step_type&quot;:&quot;number_text&quot;,&quot;step_icon_shape&quot;:&quot;circle&quot;}\\\" data-widget_type=\\\"form.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<form class=\\\"elementor-form\\\" method=\\\"post\\\" name=\\\"Home Form\\\">\\n\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"post_id\\\" value=\\\"10\\\"\\/>\\n\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"form_id\\\" value=\\\"55cafa9\\\"\\/>\\n\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"referer_title\\\" value=\\\"\\\" \\/>\\n\\n\\t\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"queried_id\\\" value=\\\"10\\\"\\/>\\n\\t\\t\\t\\n\\t\\t\\t<div class=\\\"elementor-form-fields-wrapper elementor-labels-above\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-name elementor-col-50\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-name\\\" class=\\\"elementor-field-label\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tFirst name\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"text\\\" name=\\\"form_fields[name]\\\" id=\\\"form-field-name\\\" class=\\\"elementor-field elementor-size-md  elementor-field-textual\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_fa204ec elementor-col-50\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-field_fa204ec\\\" class=\\\"elementor-field-label\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tLast name\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"text\\\" name=\\\"form_fields[field_fa204ec]\\\" id=\\\"form-field-field_fa204ec\\\" class=\\\"elementor-field elementor-size-md  elementor-field-textual\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-email elementor-field-group elementor-column elementor-field-group-email elementor-col-50 elementor-field-required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-email\\\" class=\\\"elementor-field-label\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tEmail\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"email\\\" name=\\\"form_fields[email]\\\" id=\\\"form-field-email\\\" class=\\\"elementor-field elementor-size-md  elementor-field-textual\\\" required=\\\"required\\\" aria-required=\\\"true\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-tel elementor-field-group elementor-column elementor-field-group-field_80fa6df elementor-col-50 elementor-field-required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-field_80fa6df\\\" class=\\\"elementor-field-label\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tPhone\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"tel\\\" name=\\\"form_fields[field_80fa6df]\\\" id=\\\"form-field-field_80fa6df\\\" class=\\\"elementor-field elementor-size-md  elementor-field-textual\\\" required=\\\"required\\\" aria-required=\\\"true\\\" pattern=\\\"[0-9()#&amp;+*-=.]+\\\" title=\\\"Only numbers and phone characters (#, -, *, etc) are accepted.\\\">\\n\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_cd3fec3 elementor-col-100 elementor-field-required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-field_cd3fec3\\\" class=\\\"elementor-field-label\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tBusiness Name\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"text\\\" name=\\\"form_fields[field_cd3fec3]\\\" id=\\\"form-field-field_cd3fec3\\\" class=\\\"elementor-field elementor-size-md  elementor-field-textual\\\" required=\\\"required\\\" aria-required=\\\"true\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-message elementor-col-100\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-message\\\" class=\\\"elementor-field-label\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tMessage\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t<textarea class=\\\"elementor-field-textual elementor-field  elementor-size-md\\\" name=\\\"form_fields[message]\\\" id=\\\"form-field-message\\\" rows=\\\"4\\\"><\\/textarea>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons\\\">\\n\\t\\t\\t\\t\\t<button class=\\\"elementor-button elementor-size-md\\\" type=\\\"submit\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Submit<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/button>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t<\\/div>\\n\\t\\t<\\/form>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8217, 855, '_wp_page_template', 'elementor_header_footer'),
(8171, 850, '_elementor_page_settings', 'a:0:{}'),
(8174, 851, '_wp_page_template', 'elementor_header_footer'),
(8175, 851, '_elementor_edit_mode', 'builder'),
(8176, 851, '_elementor_template_type', 'wp-page'),
(8177, 851, '_elementor_version', '3.33.0'),
(8178, 851, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8179, 851, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8181, 851, '_elementor_page_settings', 'a:0:{}'),
(8329, 867, '_wp_page_template', 'elementor_header_footer'),
(8184, 852, '_wp_page_template', 'elementor_header_footer'),
(8185, 852, '_elementor_edit_mode', 'builder'),
(8186, 852, '_elementor_template_type', 'wp-page'),
(8187, 852, '_elementor_version', '3.33.0'),
(8188, 852, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8189, 852, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8250, 858, '_wp_page_template', 'elementor_header_footer'),
(8230, 856, '_wp_page_template', 'elementor_header_footer'),
(8231, 856, '_elementor_edit_mode', 'builder'),
(8232, 856, '_elementor_template_type', 'wp-page'),
(8233, 856, '_elementor_version', '3.33.0'),
(8234, 856, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8235, 856, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":87,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8204, 853, '_elementor_page_settings', 'a:0:{}'),
(8207, 854, '_wp_page_template', 'elementor_header_footer'),
(8208, 854, '_elementor_edit_mode', 'builder'),
(8209, 854, '_elementor_template_type', 'wp-page'),
(8210, 854, '_elementor_version', '3.33.0'),
(8211, 854, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8212, 854, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8214, 854, '_elementor_page_settings', 'a:0:{}'),
(8218, 855, '_elementor_edit_mode', 'builder'),
(8219, 855, '_elementor_template_type', 'wp-page'),
(8220, 855, '_elementor_version', '3.33.0'),
(8221, 855, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8222, 855, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":87,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8283, 861, '_wp_page_template', 'elementor_header_footer'),
(8263, 859, '_wp_page_template', 'elementor_header_footer'),
(8264, 859, '_elementor_edit_mode', 'builder'),
(8265, 859, '_elementor_template_type', 'wp-page'),
(8266, 859, '_elementor_version', '3.33.0'),
(8267, 859, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8268, 859, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8237, 856, '_elementor_page_settings', 'a:0:{}'),
(8240, 857, '_wp_page_template', 'elementor_header_footer'),
(8241, 857, '_elementor_edit_mode', 'builder'),
(8242, 857, '_elementor_template_type', 'wp-page'),
(8243, 857, '_elementor_version', '3.33.0'),
(8244, 857, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8245, 857, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":87,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8247, 857, '_elementor_page_settings', 'a:0:{}'),
(8251, 858, '_elementor_edit_mode', 'builder'),
(8252, 858, '_elementor_template_type', 'wp-page'),
(8253, 858, '_elementor_version', '3.33.0'),
(8254, 858, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8255, 858, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8311, 865, '_wp_page_template', 'elementor_header_footer'),
(8312, 865, '_elementor_edit_mode', 'builder'),
(8313, 865, '_elementor_template_type', 'wp-page'),
(8314, 865, '_elementor_version', '3.33.0'),
(8315, 865, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8316, 865, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8270, 859, '_elementor_page_settings', 'a:0:{}'),
(8273, 860, '_wp_page_template', 'elementor_header_footer'),
(8274, 860, '_elementor_edit_mode', 'builder'),
(8275, 860, '_elementor_template_type', 'wp-page'),
(8276, 860, '_elementor_version', '3.33.0'),
(8277, 860, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8278, 860, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8280, 860, '_elementor_page_settings', 'a:0:{}'),
(8284, 861, '_elementor_edit_mode', 'builder'),
(8285, 861, '_elementor_template_type', 'wp-page'),
(8286, 861, '_elementor_version', '3.33.0'),
(8287, 861, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8288, 861, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8363, 871, '_wp_page_template', 'elementor_header_footer'),
(8343, 869, '_wp_page_template', 'elementor_header_footer'),
(8344, 869, '_elementor_edit_mode', 'builder'),
(8345, 869, '_elementor_template_type', 'wp-page'),
(8346, 869, '_elementor_version', '3.33.0'),
(8347, 869, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8348, 869, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8296, 862, '_wp_attached_file', '2025/11/payphone-that-is-black-box-1.png'),
(8297, 862, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:2000;s:4:\"file\";s:40:\"2025/11/payphone-that-is-black-box-1.png\";s:8:\"filesize\";i:360139;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"payphone-that-is-black-box-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21653;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"payphone-that-is-black-box-1-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:190169;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"payphone-that-is-black-box-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6878;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"payphone-that-is-black-box-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:112239;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"payphone-that-is-black-box-1-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:396074;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8334, 867, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8330, 867, '_elementor_edit_mode', 'builder'),
(8331, 867, '_elementor_template_type', 'wp-page'),
(8332, 867, '_elementor_version', '3.33.0'),
(8333, 867, '_elementor_pro_version', '3.25.4'),
(8309, 864, '_wp_attached_file', '2025/11/atm.png'),
(8310, 864, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:318;s:6:\"height\";i:609;s:4:\"file\";s:15:\"2025/11/atm.png\";s:8:\"filesize\";i:64402;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"atm-157x300.png\";s:5:\"width\";i:157;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22272;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"atm-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13624;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(8318, 865, '_elementor_page_settings', 'a:0:{}'),
(8320, 866, '_wp_page_template', 'elementor_header_footer'),
(8321, 866, '_elementor_edit_mode', 'builder'),
(8322, 866, '_elementor_template_type', 'wp-page'),
(8323, 866, '_elementor_version', '3.33.0'),
(8324, 866, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8325, 866, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/clean__modern_ATM_machines_-removebg-preview.png\",\"id\":680,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8327, 866, '_elementor_page_settings', 'a:0:{}'),
(8396, 874, '_wp_page_template', 'elementor_header_footer'),
(8376, 872, '_wp_page_template', 'elementor_header_footer'),
(8377, 872, '_elementor_edit_mode', 'builder'),
(8378, 872, '_elementor_template_type', 'wp-page'),
(8379, 872, '_elementor_version', '3.33.0'),
(8380, 872, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8381, 872, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8458, 881, '_wp_page_template', 'elementor_header_footer'),
(8341, 868, '_wp_attached_file', '2025/11/15784592-1.jpg'),
(8342, 868, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:998;s:4:\"file\";s:22:\"2025/11/15784592-1.jpg\";s:8:\"filesize\";i:88701;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"15784592-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12264;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"15784592-1-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71493;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"15784592-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4677;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"15784592-1-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46479;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(8350, 869, '_elementor_page_settings', 'a:0:{}'),
(8353, 870, '_wp_page_template', 'elementor_header_footer'),
(8354, 870, '_elementor_edit_mode', 'builder'),
(8355, 870, '_elementor_template_type', 'wp-page'),
(8356, 870, '_elementor_version', '3.33.0'),
(8357, 870, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8358, 870, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8360, 870, '_elementor_page_settings', 'a:0:{}'),
(8364, 871, '_elementor_edit_mode', 'builder'),
(8365, 871, '_elementor_template_type', 'wp-page'),
(8366, 871, '_elementor_version', '3.33.0'),
(8367, 871, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8368, 871, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8445, 880, '_wp_page_template', 'elementor_header_footer'),
(8425, 878, '_wp_page_template', 'elementor_header_footer'),
(8426, 878, '_elementor_edit_mode', 'builder'),
(8427, 878, '_elementor_template_type', 'wp-page'),
(8428, 878, '_elementor_version', '3.33.0'),
(8429, 878, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8430, 878, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8383, 872, '_elementor_page_settings', 'a:0:{}'),
(8386, 873, '_wp_page_template', 'elementor_header_footer'),
(8387, 873, '_elementor_edit_mode', 'builder'),
(8388, 873, '_elementor_template_type', 'wp-page'),
(8389, 873, '_elementor_version', '3.33.0'),
(8390, 873, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8391, 873, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8393, 873, '_elementor_page_settings', 'a:0:{}'),
(8397, 874, '_elementor_edit_mode', 'builder'),
(8398, 874, '_elementor_template_type', 'wp-page'),
(8399, 874, '_elementor_version', '3.33.0'),
(8400, 874, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8401, 874, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8478, 883, '_wp_page_template', 'elementor_header_footer'),
(8459, 881, '_elementor_edit_mode', 'builder'),
(8460, 881, '_elementor_template_type', 'wp-page'),
(8461, 881, '_elementor_version', '3.33.0'),
(8462, 881, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8463, 881, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\",\"background_overlay_color\":\"#0A578E\",\"background_overlay_color_b\":\"#000B1B\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8450, 880, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\",\"background_overlay_color\":\"#0A578E\",\"background_overlay_color_b\":\"#000B1B\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8446, 880, '_elementor_edit_mode', 'builder'),
(8447, 880, '_elementor_template_type', 'wp-page'),
(8448, 880, '_elementor_version', '3.33.0'),
(8449, 880, '_elementor_pro_version', '3.25.4'),
(8421, 876, '_wp_trash_meta_status', 'publish'),
(8422, 876, '_wp_trash_meta_time', '1764072104'),
(8423, 877, '_wp_trash_meta_status', 'publish'),
(8424, 877, '_wp_trash_meta_time', '1764072171'),
(8432, 878, '_elementor_page_settings', 'a:0:{}'),
(8435, 879, '_wp_page_template', 'elementor_header_footer'),
(8436, 879, '_elementor_edit_mode', 'builder'),
(8437, 879, '_elementor_template_type', 'wp-page'),
(8438, 879, '_elementor_version', '3.33.0'),
(8439, 879, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8440, 879, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8442, 879, '_elementor_page_settings', 'a:0:{}'),
(8511, 886, '_wp_page_template', 'elementor_header_footer'),
(8491, 884, '_wp_page_template', 'elementor_header_footer'),
(8492, 884, '_elementor_edit_mode', 'builder'),
(8493, 884, '_elementor_template_type', 'wp-page'),
(8494, 884, '_elementor_version', '3.33.0'),
(8495, 884, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8496, 884, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\",\"background_overlay_color\":\"#0A578E\",\"background_overlay_color_b\":\"#000B1B\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8465, 881, '_elementor_page_settings', 'a:0:{}'),
(8468, 882, '_wp_page_template', 'elementor_header_footer'),
(8469, 882, '_elementor_edit_mode', 'builder'),
(8470, 882, '_elementor_template_type', 'wp-page'),
(8471, 882, '_elementor_version', '3.33.0'),
(8472, 882, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8473, 882, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\",\"background_overlay_color\":\"#0A578E\",\"background_overlay_color_b\":\"#000B1B\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8475, 882, '_elementor_page_settings', 'a:0:{}'),
(8479, 883, '_elementor_edit_mode', 'builder'),
(8480, 883, '_elementor_template_type', 'wp-page'),
(8481, 883, '_elementor_version', '3.33.0'),
(8482, 883, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8483, 883, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\",\"background_overlay_color\":\"#0A578E\",\"background_overlay_color_b\":\"#000B1B\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8930, 930, '_wp_page_template', 'elementor_header_footer'),
(8931, 930, '_elementor_edit_mode', 'builder'),
(8932, 930, '_elementor_template_type', 'wp-page'),
(8933, 930, '_elementor_version', '3.33.0'),
(8934, 930, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8935, 930, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\",\"background_overlay_color\":\"#0A578E\",\"background_overlay_color_b\":\"#000B1B\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero effort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8498, 884, '_elementor_page_settings', 'a:0:{}'),
(8501, 885, '_wp_page_template', 'elementor_header_footer'),
(8502, 885, '_elementor_edit_mode', 'builder'),
(8503, 885, '_elementor_template_type', 'wp-page'),
(8504, 885, '_elementor_version', '3.33.0'),
(8505, 885, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8506, 885, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\",\"background_overlay_color\":\"#0A578E\",\"background_overlay_color_b\":\"#000B1B\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero e\\u01afort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8508, 885, '_elementor_page_settings', 'a:0:{}'),
(8512, 886, '_elementor_edit_mode', 'builder'),
(8513, 886, '_elementor_template_type', 'wp-page'),
(8514, 886, '_elementor_version', '3.33.0'),
(8515, 886, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8516, 886, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\",\"background_overlay_color\":\"#0A578E\",\"background_overlay_color_b\":\"#000B1B\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero effort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8959, 10, '_elementor_page_settings', 'a:0:{}'),
(8960, 10, '_elementor_controls_usage', 'a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:9;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:2;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:9;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:3;s:4:\"link\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:34;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:13:\"content_width\";i:28;s:14:\"flex_direction\";i:20;s:10:\"min_height\";i:2;s:20:\"flex_justify_content\";i:12;s:5:\"width\";i:17;s:9:\"flex_wrap\";i:5;s:8:\"flex_gap\";i:11;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:34;}s:18:\"section_background\";a:9:{s:21:\"background_background\";i:17;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;s:21:\"background_video_link\";i:1;s:25:\"background_play_on_mobile\";i:1;s:16:\"background_color\";i:10;s:27:\"background_hover_background\";i:5;}s:26:\"section_background_overlay\";a:4:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:5;s:12:\"border_width\";i:5;s:12:\"border_color\";i:2;s:13:\"border_radius\";i:2;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:34;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:15;s:18:\"animation_duration\";i:11;}s:14:\"section_layout\";a:3:{s:7:\"padding\";i:22;s:11:\"css_classes\";i:10;s:16:\"_flex_align_self\";i:1;}s:19:\"_section_responsive\";a:6:{s:17:\"hide_mobile_extra\";i:2;s:11:\"hide_mobile\";i:2;s:15:\"hide_widescreen\";i:1;s:12:\"hide_desktop\";i:1;s:17:\"hide_tablet_extra\";i:1;s:11:\"hide_tablet\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:4;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:13:\"selected_icon\";i:9;s:10:\"title_text\";i:9;s:16:\"description_text\";i:9;s:10:\"title_size\";i:9;s:4:\"view\";i:5;s:5:\"shape\";i:3;s:4:\"link\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:5:{s:10:\"text_align\";i:4;s:18:\"title_bottom_space\";i:4;s:8:\"position\";i:5;s:15:\"position_mobile\";i:5;s:26:\"content_vertical_alignment\";i:2;}s:18:\"section_style_icon\";a:2:{s:9:\"icon_size\";i:5;s:12:\"icon_padding\";i:5;}s:21:\"section_style_content\";a:2:{s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_weight\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:9;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:10:\"icon_align\";i:1;}s:18:\"section_text_style\";a:2:{s:26:\"icon_typography_typography\";i:1;s:25:\"icon_typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:7;s:10:\"image_size\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:18:\"image_border_width\";i:3;s:19:\"image_border_radius\";i:7;s:6:\"height\";i:1;s:10:\"object-fit\";i:1;s:19:\"image_border_border\";i:6;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:7;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_size\";i:1;s:11:\"button_text\";i:1;}s:13:\"section_email\";a:5:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:14:\"email_reply_to\";i:1;s:13:\"form_metadata\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;s:31:\"label_typography_text_transform\";i:1;}s:19:\"section_field_style\";a:2:{s:22:\"field_background_color\";i:1;s:18:\"field_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(8531, 887, '_elementor_page_settings', 'a:0:{}'),
(8534, 888, '_wp_page_template', 'elementor_header_footer'),
(8536, 888, '_elementor_edit_mode', 'builder'),
(8537, 888, '_elementor_template_type', 'wp-page'),
(8538, 888, '_elementor_version', '3.33.0'),
(8539, 888, '_elementor_pro_version', '3.25.4'),
(8540, 888, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/cogwheel_16458123.svg\",\"id\":803},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot tra\\u01afic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(8541, 888, '_elementor_page_settings', 'a:0:{}'),
(8546, 889, '_elementor_edit_mode', 'builder'),
(8547, 889, '_elementor_template_type', 'wp-page'),
(8548, 889, '_elementor_version', '3.33.0'),
(8549, 889, '_elementor_pro_version', '3.25.4'),
(8550, 889, '_elementor_data', '[{\"id\":\"681aab2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e90b2b6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"92b7a02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b19b66\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"8556ccb\"}]},\"elements\":[{\"id\":\"e1db8ff\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f808148\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6dee62e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"14ee9f0\"}],\"pp_display_conditions\":[{\"_id\":\"bcf45f8\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86737c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"How It Works\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245ec01\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90d511d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Quick Consultation \",\"_id\":\"4213500\",\"subtitle\":\"\",\"description\":\"<p>We confirm your location, traffic, and business needs to ensure a strong fit<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/chat_12839357-1.svg\",\"id\":772},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Fast, Free Installation \",\"subtitle\":\"\",\"description\":\"<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/cogwheel_16458123.svg\",\"id\":803},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"a4c0ff5\"},{\"title\":\"We Handle Everything\",\"subtitle\":\"\",\"description\":\"<p>Cash loading, service, monitoring, maintenance are 100% covered.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/delivery_2676600.svg\",\"id\":774},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"d4fcff6\"},{\"title\":\"You Enjoy the Benefits \",\"subtitle\":\"\",\"description\":\"<p>More foot traffic, better customer experience, and a no-cost upgrade to your business.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/welfare_16848953.svg\",\"id\":775},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e1c7cc9\"}],\"layout\":\"grid\",\"columns\":\"4\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"info_box_background_background\":\"classic\",\"info_box_background_color\":\"#FAFAFA\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"55\",\"left\":\"15\",\"isLinked\":false},\"icon_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"title_margin\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"0bbc890\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(8564, 890, '_elementor_page_settings', 'a:0:{}'),
(8567, 891, '_wp_page_template', 'elementor_header_footer'),
(8569, 891, '_elementor_edit_mode', 'builder'),
(8570, 891, '_elementor_template_type', 'wp-page'),
(8571, 891, '_elementor_version', '3.33.0'),
(8572, 891, '_elementor_pro_version', '3.25.4'),
(8573, 891, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot tra\\u01afic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service. \\n\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-tra\\u01afic locations looking to increase revenue e\\u01afortlessly.\\n\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8574, 891, '_elementor_page_settings', 'a:0:{}'),
(8579, 892, '_elementor_edit_mode', 'builder'),
(8580, 892, '_elementor_template_type', 'wp-page'),
(8581, 892, '_elementor_version', '3.33.0'),
(8582, 892, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8583, 892, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8643, 898, '_wp_page_template', 'elementor_header_footer'),
(8623, 896, '_wp_page_template', 'elementor_header_footer'),
(8625, 896, '_elementor_edit_mode', 'builder'),
(8626, 896, '_elementor_template_type', 'wp-page'),
(8627, 896, '_elementor_version', '3.33.0'),
(8628, 896, '_elementor_pro_version', '3.25.4'),
(8629, 896, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-77.jpg\",\"id\":823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8597, 893, '_elementor_page_settings', 'a:0:{}'),
(8600, 894, '_wp_page_template', 'elementor_header_footer'),
(8602, 894, '_elementor_edit_mode', 'builder'),
(8603, 894, '_elementor_template_type', 'wp-page'),
(8604, 894, '_elementor_version', '3.33.0'),
(8605, 894, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8606, 894, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\",\"id\":479,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8607, 894, '_elementor_page_settings', 'a:0:{}'),
(8612, 895, '_elementor_edit_mode', 'builder'),
(8613, 895, '_elementor_template_type', 'wp-page'),
(8614, 895, '_elementor_version', '3.33.0'),
(8615, 895, '_elementor_pro_version', '3.25.4'),
(8616, 895, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-77.jpg\",\"id\":823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8713, 906, '_wp_page_template', 'elementor_header_footer'),
(8678, 902, '_wp_page_template', 'elementor_header_footer'),
(8660, 900, '_elementor_edit_mode', 'builder'),
(8661, 900, '_elementor_template_type', 'wp-page'),
(8662, 900, '_elementor_version', '3.33.0'),
(8663, 900, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8664, 900, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8630, 896, '_elementor_page_settings', 'a:0:{}'),
(8633, 897, '_wp_page_template', 'elementor_header_footer'),
(8635, 897, '_elementor_edit_mode', 'builder'),
(8636, 897, '_elementor_template_type', 'wp-page'),
(8637, 897, '_elementor_version', '3.33.0'),
(8638, 897, '_elementor_pro_version', '3.25.4'),
(8639, 897, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-77.jpg\",\"id\":823,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8640, 897, '_elementor_page_settings', 'a:0:{}'),
(8645, 898, '_elementor_edit_mode', 'builder'),
(8646, 898, '_elementor_template_type', 'wp-page'),
(8647, 898, '_elementor_version', '3.33.0'),
(8648, 898, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8649, 898, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8693, 904, '_wp_page_template', 'elementor_header_footer'),
(8695, 904, '_elementor_edit_mode', 'builder'),
(8696, 904, '_elementor_template_type', 'wp-page'),
(8697, 904, '_elementor_version', '3.33.0'),
(8698, 904, '_elementor_pro_version', '3.25.4'),
(8699, 904, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8757, 910, '_wp_attached_file', '2025/11/Free-ATM-Installation-scaled.jpg'),
(8758, 910, '_wp_attachment_metadata', 'a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:40:\"2025/11/Free-ATM-Installation-scaled.jpg\";s:8:\"filesize\";i:133505;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Free-ATM-Installation-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4937;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"Free-ATM-Installation-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31646;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Free-ATM-Installation-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3270;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Free-ATM-Installation-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20460;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"Free-ATM-Installation-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59501;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"Free-ATM-Installation-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92531;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"Free-ATM-Installation.jpg\";}'),
(8656, 899, '_wp_attached_file', '2025/11/All-the-Value-None-of-the-Work.jpg'),
(8657, 899, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:42:\"2025/11/All-the-Value-None-of-the-Work.jpg\";s:8:\"filesize\";i:39284;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"All-the-Value-None-of-the-Work-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9589;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"All-the-Value-None-of-the-Work-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5075;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"All-the-Value-None-of-the-Work-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39513;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(8665, 900, '_elementor_page_settings', 'a:0:{}'),
(8668, 901, '_wp_page_template', 'elementor_header_footer'),
(8670, 901, '_elementor_edit_mode', 'builder'),
(8671, 901, '_elementor_template_type', 'wp-page'),
(8672, 901, '_elementor_version', '3.33.0'),
(8673, 901, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8674, 901, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8675, 901, '_elementor_page_settings', 'a:0:{}'),
(8680, 902, '_elementor_edit_mode', 'builder'),
(8681, 902, '_elementor_template_type', 'wp-page'),
(8682, 902, '_elementor_version', '3.33.0'),
(8683, 902, '_elementor_pro_version', '3.25.4'),
(8684, 902, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8746, 909, '_wp_page_template', 'elementor_header_footer'),
(8728, 907, '_elementor_edit_mode', 'builder'),
(8729, 907, '_elementor_template_type', 'wp-page'),
(8730, 907, '_elementor_version', '3.33.0'),
(8731, 907, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8732, 907, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8691, 903, '_wp_attached_file', '2025/11/Flexible.jpg'),
(8692, 903, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2025/11/Flexible.jpg\";s:8:\"filesize\";i:51647;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Flexible-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Flexible-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4327;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Flexible-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45090;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(8700, 904, '_elementor_page_settings', 'a:0:{}'),
(8703, 905, '_wp_page_template', 'elementor_header_footer'),
(8705, 905, '_elementor_edit_mode', 'builder'),
(8706, 905, '_elementor_template_type', 'wp-page'),
(8707, 905, '_elementor_version', '3.33.0'),
(8708, 905, '_elementor_pro_version', '3.25.4'),
(8709, 905, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/New-Project-29.jpg\",\"id\":432,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8710, 905, '_elementor_page_settings', 'a:0:{}'),
(8715, 906, '_elementor_edit_mode', 'builder'),
(8716, 906, '_elementor_template_type', 'wp-page'),
(8717, 906, '_elementor_version', '3.33.0'),
(8718, 906, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8719, 906, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8876, 924, '_wp_page_template', 'elementor_header_footer'),
(8841, 920, '_wp_page_template', 'elementor_header_footer'),
(8759, 911, '_wp_page_template', 'elementor_header_footer'),
(8761, 911, '_elementor_edit_mode', 'builder'),
(8762, 911, '_elementor_template_type', 'wp-page'),
(8763, 911, '_elementor_version', '3.33.0'),
(8764, 911, '_elementor_pro_version', '3.25.4'),
(8765, 911, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8733, 907, '_elementor_page_settings', 'a:0:{}'),
(8736, 908, '_wp_page_template', 'elementor_header_footer'),
(8738, 908, '_elementor_edit_mode', 'builder'),
(8739, 908, '_elementor_template_type', 'wp-page'),
(8740, 908, '_elementor_version', '3.33.0'),
(8741, 908, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8742, 908, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/11665759-1.jpg\",\"id\":449,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8743, 908, '_elementor_page_settings', 'a:0:{}'),
(8748, 909, '_elementor_edit_mode', 'builder'),
(8749, 909, '_elementor_template_type', 'wp-page'),
(8750, 909, '_elementor_version', '3.33.0'),
(8751, 909, '_elementor_pro_version', '3.25.4'),
(8752, 909, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8774, 912, '_elementor_page_settings', 'a:0:{}'),
(8775, 913, '_wp_page_template', 'elementor_header_footer'),
(8777, 913, '_elementor_edit_mode', 'builder'),
(8778, 913, '_elementor_template_type', 'wp-page'),
(8779, 913, '_elementor_version', '3.33.0'),
(8780, 913, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8781, 913, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Free-ATM-Installation-scaled.jpg\",\"id\":910,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8806, 916, '_wp_page_template', 'elementor_header_footer'),
(8786, 914, '_wp_page_template', 'elementor_header_footer'),
(8788, 914, '_elementor_edit_mode', 'builder'),
(8789, 914, '_elementor_template_type', 'wp-page'),
(8790, 914, '_elementor_version', '3.33.0'),
(8791, 914, '_elementor_pro_version', '3.25.4'),
(8792, 914, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Free-ATM-Installation-scaled.jpg\",\"id\":910,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8821, 918, '_wp_page_template', 'elementor_header_footer'),
(8823, 918, '_elementor_edit_mode', 'builder'),
(8824, 918, '_elementor_template_type', 'wp-page'),
(8825, 918, '_elementor_version', '3.33.0'),
(8826, 918, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8827, 918, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Free-ATM-Installation-scaled.jpg\",\"id\":910,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8889, 926, '_wp_page_template', 'elementor_header_footer'),
(8887, 925, '_wp_attached_file', '2025/11/All-the-Value.jpg'),
(8888, 925, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:25:\"2025/11/All-the-Value.jpg\";s:8:\"filesize\";i:49194;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"All-the-Value-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10303;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"All-the-Value-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4771;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"All-the-Value-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40164;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(8896, 926, '_elementor_page_settings', 'a:0:{}'),
(8897, 927, '_wp_page_template', 'elementor_header_footer'),
(8899, 927, '_elementor_edit_mode', 'builder'),
(8900, 927, '_elementor_template_type', 'wp-page'),
(8901, 927, '_elementor_version', '3.33.0'),
(8902, 927, '_elementor_pro_version', '3.25.4'),
(8903, 927, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Free-ATM.jpg\",\"id\":921,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/1-1.jpg\",\"id\":917,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8793, 914, '_elementor_page_settings', 'a:0:{}'),
(8796, 915, '_wp_page_template', 'elementor_header_footer'),
(8798, 915, '_elementor_edit_mode', 'builder'),
(8799, 915, '_elementor_template_type', 'wp-page'),
(8800, 915, '_elementor_version', '3.33.0'),
(8801, 915, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8802, 915, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Free-ATM-Installation-scaled.jpg\",\"id\":910,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/15784592-1.jpg\",\"id\":868,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8803, 915, '_elementor_page_settings', 'a:0:{}'),
(8808, 916, '_elementor_edit_mode', 'builder'),
(8809, 916, '_elementor_template_type', 'wp-page'),
(8810, 916, '_elementor_version', '3.33.0'),
(8811, 916, '_elementor_pro_version', '3.25.4'),
(8812, 916, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Free-ATM-Installation-scaled.jpg\",\"id\":910,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8856, 922, '_wp_page_template', 'elementor_header_footer'),
(8858, 922, '_elementor_edit_mode', 'builder'),
(8859, 922, '_elementor_template_type', 'wp-page'),
(8860, 922, '_elementor_version', '3.33.0'),
(8861, 922, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8862, 922, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Free-ATM-Installation-scaled.jpg\",\"id\":910,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/1-1.jpg\",\"id\":917,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8819, 917, '_wp_attached_file', '2025/11/1-1.jpg'),
(8820, 917, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:612;s:4:\"file\";s:15:\"2025/11/1-1.jpg\";s:8:\"filesize\";i:45810;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"1-1-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10074;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4678;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"1-1-768x470.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42588;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(8828, 918, '_elementor_page_settings', 'a:0:{}'),
(8831, 919, '_wp_page_template', 'elementor_header_footer'),
(8833, 919, '_elementor_edit_mode', 'builder'),
(8834, 919, '_elementor_template_type', 'wp-page'),
(8835, 919, '_elementor_version', '3.33.0'),
(8836, 919, '_elementor_pro_version', '3.25.4'),
(8837, 919, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Free-ATM-Installation-scaled.jpg\",\"id\":910,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8838, 919, '_elementor_page_settings', 'a:0:{}'),
(8843, 920, '_elementor_edit_mode', 'builder'),
(8844, 920, '_elementor_template_type', 'wp-page'),
(8845, 920, '_elementor_version', '3.33.0'),
(8846, 920, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8847, 920, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Free-ATM-Installation-scaled.jpg\",\"id\":910,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/1-1.jpg\",\"id\":917,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8905, 928, '_wp_page_template', 'elementor_header_footer'),
(8891, 926, '_elementor_edit_mode', 'builder'),
(8892, 926, '_elementor_template_type', 'wp-page'),
(8893, 926, '_elementor_version', '3.33.0'),
(8894, 926, '_elementor_pro_version', '3.25.4'),
(8895, 926, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Free-ATM.jpg\",\"id\":921,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/1-1.jpg\",\"id\":917,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8854, 921, '_wp_attached_file', '2025/11/Free-ATM.jpg'),
(8855, 921, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2025/11/Free-ATM.jpg\";s:8:\"filesize\";i:24604;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Free-ATM-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5605;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Free-ATM-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3966;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Free-ATM-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20116;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(8863, 922, '_elementor_page_settings', 'a:0:{}'),
(8866, 923, '_wp_page_template', 'elementor_header_footer'),
(8868, 923, '_elementor_edit_mode', 'builder'),
(8869, 923, '_elementor_template_type', 'wp-page'),
(8870, 923, '_elementor_version', '3.33.0'),
(8871, 923, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8872, 923, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Free-ATM-Installation-scaled.jpg\",\"id\":910,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/1-1.jpg\",\"id\":917,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8873, 923, '_elementor_page_settings', 'a:0:{}'),
(8878, 924, '_elementor_edit_mode', 'builder'),
(8879, 924, '_elementor_template_type', 'wp-page'),
(8880, 924, '_elementor_version', '3.33.0'),
(8881, 924, '_elementor_pro_version', '3.25.4'),
(8882, 924, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Free-ATM.jpg\",\"id\":921,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/1-1.jpg\",\"id\":917,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8904, 927, '_elementor_page_settings', 'a:0:{}'),
(8907, 928, '_elementor_edit_mode', 'builder'),
(8908, 928, '_elementor_template_type', 'wp-page'),
(8909, 928, '_elementor_version', '3.33.0'),
(8910, 928, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8911, 928, '_elementor_data', '[{\"id\":\"a57bc69\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"b6a5f4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4691eae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Free-ATM.jpg\",\"id\":921,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f10488e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ee33d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Free ATM Installation\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fb23d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.\\nNo rental fees. No installation charges. No surprises. \",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c590a41\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ccc6407\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ec7197c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value.jpg\",\"id\":925,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b55943\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e482e66\",\"elType\":\"widget\",\"settings\":{\"title\":\"All the Value, None of the Work \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cb557c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad73a16\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"03524c4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89306e4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Flexible.jpg\",\"id\":903,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"813ebe1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"99a5512\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible, Business-Friendly Terms \",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a402b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"No long-term contracts or penalties.\\nIf a location underperforms, we simply relocate the machine easily and stress-free.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5519200\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2590d58\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e08c63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cc24a8e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"23e79ce\"}]},\"elements\":[{\"id\":\"ec7b580\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7a877\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4d2075a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2c881a9\"}],\"pp_display_conditions\":[{\"_id\":\"af83f59\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f967f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/All-the-Value-None-of-the-Work.jpg\",\"id\":899,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd8b397\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f1f59fc\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b5c4ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"444e931\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f8bdcf0\"}],\"pp_display_conditions\":[{\"_id\":\"5536b3d\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04defe1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Smart Fit for Your Business \\n\",\"pp_display_conditions\":[{\"_id\":\"abd6b5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6017bd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\\nand other high-traffic locations looking to increase revenue effortlessly.\",\"pp_display_conditions\":[{\"_id\":\"a48c0bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"01e87f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9889b1b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bb51124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f364006\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b706e73\"}]},\"elements\":[{\"id\":\"00ccf67\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":76,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b881b10\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed823aa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b73045c\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ec4b596\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"28b8870\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"d909591\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_2170875.svg\",\"id\":560},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dependable_10108269.svg\",\"id\":561},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"e258a62\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/security_6865385.svg\",\"id\":562},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"54ec6ef\"}],\"layout\":\"grid\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#80858B\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b5f9f17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6cd64aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"053d9c6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2201f09\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b2844d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0d4933\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"01ec757\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a60fe18\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"50ab01e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7cc60f1\"}],\"pp_display_conditions\":[{\"_id\":\"b418ff3\"}]},\"elements\":[{\"id\":\"2101c4b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"6e93211\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/images.png\",\"id\":463,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c69de4c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a66eac8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"f22db7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/download-2.png\",\"id\":468,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8f7520e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"de367c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe21a00\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aaf2b91\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#80858B\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ea9ce37\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"234597a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/620670b9d7b91b0004122617-1694098704.png\",\"id\":472,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"07a15dc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8912, 25, '_elementor_page_settings', 'a:0:{}'),
(8913, 25, '_elementor_controls_usage', 'a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:7;s:10:\"image_size\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:4;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:7;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:19;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:15;s:13:\"content_width\";i:13;s:5:\"width\";i:9;s:20:\"flex_justify_content\";i:6;s:8:\"flex_gap\";i:4;}}s:5:\"style\";a:3:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:19;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:13:\"border_radius\";i:3;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:19;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:12;s:18:\"animation_duration\";i:12;}s:14:\"section_layout\";a:2:{s:7:\"padding\";i:6;s:16:\"_flex_align_self\";i:1;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:1;s:12:\"hide_desktop\";i:1;s:17:\"hide_tablet_extra\";i:1;s:11:\"hide_tablet\";i:1;s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:4;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:21:\"typography_typography\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}}}s:20:\"pp-info-box-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_info_boxes\";a:3:{s:13:\"pp_info_boxes\";i:1;s:6:\"layout\";i:1;s:20:\"columns_mobile_extra\";i:1;}}s:5:\"style\";a:2:{s:22:\"section_info_box_style\";a:5:{s:22:\"info_box_border_border\";i:1;s:21:\"info_box_border_width\";i:1;s:21:\"info_box_border_color\";i:1;s:22:\"info_box_border_radius\";i:1;s:16:\"info_box_padding\";i:1;}s:27:\"section_info_box_icon_style\";a:1:{s:9:\"icon_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(8923, 929, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(8937, 930, '_elementor_page_settings', 'a:0:{}'),
(8940, 931, '_wp_page_template', 'elementor_header_footer'),
(8941, 931, '_elementor_edit_mode', 'builder'),
(8942, 931, '_elementor_template_type', 'wp-page'),
(8943, 931, '_elementor_version', '3.33.0'),
(8944, 931, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8945, 931, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\",\"background_overlay_color\":\"#0A578E\",\"background_overlay_color_b\":\"#000B1B\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero effort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8947, 931, '_elementor_page_settings', 'a:0:{}'),
(8950, 932, '_wp_page_template', 'elementor_header_footer'),
(8951, 932, '_elementor_edit_mode', 'builder'),
(8952, 932, '_elementor_template_type', 'wp-page'),
(8953, 932, '_elementor_version', '3.33.0'),
(8954, 932, '_elementor_pro_version', '3.25.4');
INSERT INTO `wps_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8955, 932, '_elementor_data', '[{\"id\":\"468040b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":790,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/72966-1.jpg\",\"id\":158,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ca5f47\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6206d01\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d332233\"}],\"background_overlay_background\":\"gradient\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1078ff4\"}],\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"background_video_link\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/0-Atm-Cash-Withdrawal-1920X1010.mp4\",\"background_overlay_color\":\"#0A578E\",\"background_overlay_color_b\":\"#000B1B\",\"background_play_on_mobile\":\"yes\"},\"elements\":[{\"id\":\"1d73edd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6036011\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4b7d9a6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"606d7e9\"}],\"pp_display_conditions\":[{\"_id\":\"1c87fc6\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6ae569e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reliable, Modern ATMs Installed in Your Business at No Cost to You\",\"header_size\":\"h1\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"6f2fc7f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f61d4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero effort required on your end.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":78,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"070e8cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a3fc69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9c296f8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"165609a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2c52b8c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39cd260\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"896c273\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"css_classes\":\"services_style\",\"pp_display_conditions\":[{\"_id\":\"593537d\"}]},\"elements\":[{\"id\":\"5350a80\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Snapshot\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8c5e71d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b454f0e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6643fc2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1df3599\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"985547c\"}],\"pp_display_conditions\":[{\"_id\":\"fac7bcf\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3385889\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"5768737\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"175542c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/money_12976025.svg\",\"id\":250},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"751b398\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"c4d696b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Free ATM Installation \",\"description_text\":\"We cover everything \\u2014 the machine, delivery, installation, programming, and setup.No rental fees.\",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"59bc92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"694bbd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_hover_background\":\"classic\",\"__globals__\":{\"background_hover_color\":\"\"},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"35e23e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/briefcase_2962083.svg\",\"id\":267},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a271e7f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\",\"background_color\":\"#0a578e\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"a2faa86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"All the Value, None of the Work \",\"description_text\":\"You get increased foot traffic and customer convenience.We manage every detail: cash loading, \",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"60c3a6a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_hover_color\":\"\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\",\"background_hover_background\":\"classic\",\"border_color\":\"#0a578e\"},\"elements\":[{\"id\":\"e0f0293\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"03b8410\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/employment_3526038.svg\",\"id\":331},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"c1f19e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"24\",\"isLinked\":false},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"64d2514\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Flexible, Business-Friendly Terms \",\"description_text\":\"No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. \",\"title_size\":\"h5\",\"text_align\":\"right\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5db3418\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e803d8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4315d57\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"219e80b\"}],\"pp_display_conditions\":[{\"_id\":\"23c0f88\"}],\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"services_box_style\"},\"elements\":[{\"id\":\"505a003\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":34,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"nowrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"8a912d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/business-problem_9952781.svg\",\"id\":332},\"library\":\"svg\"},\"pp_display_conditions\":[{\"_id\":\"286d993\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6cc7a56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"608811b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a677632\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e5d1c44\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"css_classes\":\"services_box_style\",\"pp_display_conditions\":[{\"_id\":\"6afe525\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"efce541\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"A Smart Fit for Your Business \",\"description_text\":\"Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\",\"title_size\":\"h5\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e708ffa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"},\"text_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0149b66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29102b2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d53c49f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"0781fff\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1ffa979\"}],\"content_width\":\"full\",\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"css_classes\":\"choose_section\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5cba488\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"19523ab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15110ca\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c09c459\"}],\"pp_display_conditions\":[{\"_id\":\"5771310\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/dfg.jpg\",\"id\":827,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"694c21f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"76a1789\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cdf371a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bf4010\"}],\"pp_display_conditions\":[{\"_id\":\"75bc530\"}],\"flex_justify_content\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"choose_box_section\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"70b0896\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"pp_display_conditions\":[{\"_id\":\"80a373b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9fbab00\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Local Expertise\",\"description_text\":\"Based in Los Angeles and serving surrounding areas \\u2014 quick response, personalized service. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/expertise_14641472.svg\",\"id\":646},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"b26d50a\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Hands-On Support \",\"description_text\":\"You get direct communication and real accountability. No corporate runaround, ever. \\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/setting_5250560.svg\",\"id\":647},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9003ac4\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"rounded\",\"title_text\":\"Invested in Your Success \",\"description_text\":\"Your ATM\\u2019s performance is our performance. We make sure it runs smoothly, consistently,\\n\\n\",\"position\":\"left\",\"pp_display_conditions\":[{\"_id\":\"e0fd645\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/successful_15565605.svg\",\"id\":648},\"library\":\"svg\"},\"title_size\":\"h5\",\"position_mobile\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"877d1ea\",\"elType\":\"widget\",\"settings\":{\"text\":\"learn more\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f2479e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/why-choose-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"503fdb3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"25c0b31\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8dfcf1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a1805cf\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"79eabe4\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"e185325\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"be29ab7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"14aad89\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"c174a4d\"}],\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f12099\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2f0bd2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ready to offer your customers easy access to cash, at no cost to you?\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1c482e3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c425\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"We\\u2019ll reach out within 24 hours. \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b3b1224\"}],\"icon_align\":\"center\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f35b6f3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9cb3ec2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request a Free ATM\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"844f3dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"665abc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"428fb30\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"38bbd15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dc9e46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"073f798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"40608bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"53c0c20\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"fb0bb12\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm.png\",\"id\":864,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor5\"},\"height\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"object-fit\":\"contain\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"91ee6f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-start\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"17\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b256852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6cb114a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/Why-Choose.jpeg\",\"id\":690,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"152ed4b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":15,\"column\":\"15\",\"row\":\"15\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b7b6744\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8638eea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9323214\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"52665c8\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8bdb340\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aa415d7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b21daab\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1adbb40\"}],\"pp_display_conditions\":[{\"_id\":\"83ba365\"}]},\"elements\":[{\"id\":\"fc4934c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Machines \",\"pp_display_conditions\":[{\"_id\":\"358a65c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a59077a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Modern, Reliable ATMs\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"e7fe73a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc3c9fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. \",\"pp_display_conditions\":[{\"_id\":\"868ca0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"009d6e3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_gap\":{\"column\":\"11\",\"row\":\"11\",\"isLinked\":true,\"unit\":\"px\",\"size\":11},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"bca832f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e60ab2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dad30e1\"}],\"pp_display_conditions\":[{\"_id\":\"f6619a8\"}]},\"elements\":[{\"id\":\"c5fe92f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"background_background\":\"classic\",\"background_color\":\"#FAFBFD\",\"border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7411c31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21ba66d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bbdf72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ae00de2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3cc42b8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"57cf4d8\"}],\"pp_display_conditions\":[{\"_id\":\"60e9a41\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d159c10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/atm-1.jpg\",\"id\":670,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99cf8c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/uploads\\/2025\\/11\\/10895-1.jpg\",\"id\":522,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"f3f0216\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20afde9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"647fa4b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9e653bb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5947b07\"}],\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"10\",\"bottom\":\"90\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"67dc57d\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"c8366de\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":46},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8716705\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bef67fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ebcd5fa\"}],\"padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"5c8e901\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2c037c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nContact us\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"capitalize\",\"pp_display_conditions\":[{\"_id\":\"f263a77\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8452c94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to add value to your location? Let\\u2019s talk.\",\"pp_display_conditions\":[{\"_id\":\"a86f847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e1729b1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"Call us\",\"description_text\":\"(818) 262-8674\",\"link\":{\"url\":\"tel:8182628674\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7981859\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"admin@SecureSwipeATMs.com\",\"link\":{\"url\":\"mailto:admin@SecureSwipeATMs.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_size\":\"h6\",\"position\":\"left\",\"position_mobile\":\"left\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7af39b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"90b0904\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":54},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"57a6f33\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"cfe9761\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e9a948e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"35\",\"bottom\":\"60\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6dc49c\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"55cafa9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Home Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"157f469\"},{\"custom_id\":\"field_fa204ec\",\"field_label\":\"Last name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fa204ec\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"width\":\"50\",\"_id\":\"ffaa257\"},{\"custom_id\":\"field_80fa6df\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone\",\"width\":\"50\",\"_id\":\"80fa6df\"},{\"custom_id\":\"field_cd3fec3\",\"required\":\"true\",\"field_label\":\"Business Name\",\"_id\":\"cd3fec3\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"13afe7f\"}],\"input_size\":\"md\",\"button_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_to\":\"Email admin@SecureSwipeATMs.com\",\"email_subject\":\"Contact Us - Secure Swipe Solutions\",\"email_content\":\"[all-fields]\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Secure Swipe Solutions\",\"email_reply_to\":\"email\",\"form_metadata\":[\"date\",\"time\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from &quot;Secure Swipe Solutions&quot;\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Secure Swipe Solutions\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"label_typography_text_transform\":\"capitalize\",\"field_background_color\":\"#FFFFFF73\",\"field_border_color\":\"#A3ADB452\",\"pp_display_conditions\":[{\"_id\":\"bc44a2a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor1\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');

-- --------------------------------------------------------

--
-- Table structure for table `wps_posts`
--

CREATE TABLE `wps_posts` (
  `ID` bigint(20) UNSIGNED NOT NULL,
  `post_author` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wps_posts`
--

INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2025-11-15 12:28:07', '2025-11-15 12:28:07', '<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2025-11-15 12:28:07', '2025-11-15 12:28:07', '', 0, 'https://mrarif.me/secureswipesolutions/?p=1', 0, 'post', '', 1),
(2, 1, '2025-11-15 12:28:07', '2025-11-15 12:28:07', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://mrarif.me/secureswipesolutions/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2025-11-15 12:28:07', '2025-11-15 12:28:07', '', 0, 'https://mrarif.me/secureswipesolutions/?page_id=2', 0, 'page', '', 0),
(3, 1, '2025-11-15 12:28:07', '2025-11-15 12:28:07', '<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we are</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://mrarif.me/secureswipesolutions.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Comments</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Media</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cookies</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What rights you have over your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Where your data is sent</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\n<!-- /wp:paragraph -->\n', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2025-11-15 12:28:07', '2025-11-15 12:28:07', '', 0, 'https://mrarif.me/secureswipesolutions/?page_id=3', 0, 'page', '', 0),
(4, 0, '2025-11-15 12:28:07', '2025-11-15 12:28:07', '<!-- wp:page-list /-->', 'Navigation', '', 'publish', 'closed', 'closed', '', 'navigation', '', '', '2025-11-15 12:28:07', '2025-11-15 12:28:07', '', 0, 'https://mrarif.me/secureswipesolutions/index.php/2025/11/15/navigation/', 0, 'wp_navigation', '', 0),
(6, 1, '2025-11-15 12:28:49', '2025-11-15 12:28:49', '', 'Default Kit', '', 'publish', 'closed', 'closed', '', 'default-kit', '', '', '2025-11-15 14:04:13', '2025-11-15 14:04:13', '', 0, 'https://mrarif.me/secureswipesolutions/?p=6', 0, 'elementor_library', '', 0),
(10, 1, '2025-11-15 12:35:10', '2025-11-15 12:35:10', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero effort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traffic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2025-11-27 12:11:44', '2025-11-27 12:11:44', '', 0, 'https://mrarif.me/secureswipesolutions/?page_id=10', 0, 'page', '', 0),
(11, 1, '2025-11-15 12:35:10', '2025-11-15 12:35:10', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 12:35:10', '2025-11-15 12:35:10', '', 10, 'https://mrarif.me/secureswipesolutions/?p=11', 0, 'revision', '', 0),
(12, 1, '2025-11-15 12:36:29', '2025-11-15 12:36:29', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 12:36:29', '2025-11-15 12:36:29', '', 10, 'https://mrarif.me/secureswipesolutions/?p=12', 0, 'revision', '', 0),
(13, 1, '2025-11-15 12:36:29', '2025-11-15 12:36:29', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 12:36:29', '2025-11-15 12:36:29', '', 10, 'https://mrarif.me/secureswipesolutions/?p=13', 0, 'revision', '', 0),
(24, 1, '2025-11-15 13:10:23', '2025-11-15 13:10:23', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 13:10:23', '2025-11-15 13:10:23', '', 10, 'https://mrarif.me/secureswipesolutions/?p=24', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(25, 1, '2025-11-15 13:24:46', '2025-11-15 13:24:46', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'publish', 'closed', 'closed', '', 'services-snapshot', '', '', '2025-11-27 12:05:54', '2025-11-27 12:05:54', '', 0, 'https://mrarif.me/secureswipesolutions/?page_id=25', 0, 'page', '', 0),
(14, 1, '2025-11-15 12:36:29', '2025-11-15 12:36:29', '<h2>Add Your Heading Text Here</h2>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 12:36:29', '2025-11-15 12:36:29', '', 10, 'https://mrarif.me/secureswipesolutions/?p=14', 0, 'revision', '', 0),
(15, 1, '2025-11-15 12:38:02', '2025-11-15 12:38:02', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2025-11-15 12:38:02', '2025-11-15 12:38:02', '', 6, 'https://mrarif.me/secureswipesolutions/?p=15', 0, 'revision', '', 0),
(16, 1, '2025-11-15 12:38:02', '2025-11-15 12:38:02', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2025-11-15 12:38:02', '2025-11-15 12:38:02', '', 6, 'https://mrarif.me/secureswipesolutions/?p=16', 0, 'revision', '', 0),
(17, 1, '2025-11-15 12:38:41', '2025-11-15 12:38:41', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '6-revision-v1', '', '', '2025-11-15 12:38:41', '2025-11-15 12:38:41', '', 6, 'https://mrarif.me/secureswipesolutions/?p=17', 0, 'revision', '', 0),
(18, 1, '2025-11-15 12:41:59', '2025-11-15 12:41:59', '{\n    \"astra-settings[headings-font-family]\": {\n        \"value\": \"\'Montserrat\', sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 12:41:59\"\n    },\n    \"astra-settings[headings-font-variant]\": {\n        \"value\": \"100,400,600,900\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 12:41:59\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '89b48017-31db-49ab-9d55-4284da81c874', '', '', '2025-11-15 12:41:59', '2025-11-15 12:41:59', '', 0, 'https://mrarif.me/secureswipesolutions/89b48017-31db-49ab-9d55-4284da81c874/', 0, 'customize_changeset', '', 0),
(19, 1, '2025-11-15 12:43:23', '2025-11-15 12:43:23', '{\n    \"astra-settings[font-size-h1]\": {\n        \"value\": {\n            \"desktop\": 51,\n            \"tablet\": 30,\n            \"mobile\": 30,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 12:42:28\"\n    },\n    \"astra-settings[font-weight-h2]\": {\n        \"value\": \"inherit\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 12:42:28\"\n    },\n    \"astra-settings[font-size-h2]\": {\n        \"value\": {\n            \"desktop\": 37,\n            \"tablet\": 25,\n            \"mobile\": 25,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 12:42:28\"\n    },\n    \"astra-settings[body-font-family]\": {\n        \"value\": \"\'Poppins\', sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 12:43:23\"\n    },\n    \"astra-settings[font-size-body]\": {\n        \"value\": {\n            \"desktop\": 17,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 12:43:23\"\n    },\n    \"astra-settings[font-size-h3]\": {\n        \"value\": {\n            \"desktop\": 31,\n            \"tablet\": 20,\n            \"mobile\": 20,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 12:43:23\"\n    },\n    \"astra-settings[font-size-h4]\": {\n        \"value\": {\n            \"desktop\": 27,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 12:43:23\"\n    },\n    \"astra-settings[font-size-h5]\": {\n        \"value\": {\n            \"desktop\": 23,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 12:43:23\"\n    },\n    \"astra-settings[font-size-h6]\": {\n        \"value\": {\n            \"desktop\": 19,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 12:43:23\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'e8ff17e5-54a2-4ef2-b4d8-4967b5dcd7c7', '', '', '2025-11-15 12:43:23', '2025-11-15 12:43:23', '', 0, 'https://mrarif.me/secureswipesolutions/?p=19', 0, 'customize_changeset', '', 0),
(20, 1, '2025-11-15 12:45:45', '2025-11-15 12:45:45', '{\n    \"astra-settings[site-layout-outside-bg-obj-responsive]\": {\n        \"value\": {\n            \"desktop\": {\n                \"background-color\": \"var(--ast-global-color-5)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"tablet\": {\n                \"background-color\": \"\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"mobile\": {\n                \"background-color\": \"\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            }\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 12:43:36\"\n    },\n    \"astra-settings[content-bg-obj-responsive]\": {\n        \"value\": {\n            \"desktop\": {\n                \"background-color\": \"var(--ast-global-color-4)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"tablet\": {\n                \"background-color\": \"var(--ast-global-color-4)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"mobile\": {\n                \"background-color\": \"var(--ast-global-color-4)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            }\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 12:43:36\"\n    },\n    \"astra-settings[global-color-palette]\": {\n        \"value\": {\n            \"palette\": [\n                \"#0a578e\",\n                \"#87cf7c\",\n                \"#000b1b\",\n                \"#4b4b53\",\n                \"#FFFFFF\",\n                \"#F0F5FA\",\n                \"#111111\",\n                \"#D1D5DB\",\n                \"#111111\"\n            ],\n            \"flag\": true\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 12:45:45\"\n    },\n    \"astra-color-palettes\": {\n        \"value\": {\n            \"currentPalette\": \"palette_1\",\n            \"palettes\": {\n                \"palette_1\": [\n                    \"#0a578e\",\n                    \"#87cf7c\",\n                    \"#000b1b\",\n                    \"#4b4b53\",\n                    \"#FFFFFF\",\n                    \"#F0F5FA\",\n                    \"#111111\",\n                    \"#D1D5DB\",\n                    \"#111111\"\n                ],\n                \"palette_2\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"palette_3\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"palette_4\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presets\": {\n                \"Oak\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"Viola\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"Cedar\": [\n                    \"#DD183B\",\n                    \"#CC1939\",\n                    \"#0F172A\",\n                    \"#3A3A3A\",\n                    \"#FFFFFF\",\n                    \"#FFEDE6\",\n                    \"#140609\",\n                    \"#FFD1BF\",\n                    \"#222222\"\n                ],\n                \"Willow\": [\n                    \"#54B435\",\n                    \"#379237\",\n                    \"#0F172A\",\n                    \"#2F3B40\",\n                    \"#FFFFFF\",\n                    \"#EDFBE2\",\n                    \"#0C1406\",\n                    \"#D5EAD8\",\n                    \"#222222\"\n                ],\n                \"Lily\": [\n                    \"#DCA54A\",\n                    \"#D09A40\",\n                    \"#0F172A\",\n                    \"#4A4A4A\",\n                    \"#FFFFFF\",\n                    \"#FAF5E5\",\n                    \"#141004\",\n                    \"#F0E6C5\",\n                    \"#222222\"\n                ],\n                \"Rose\": [\n                    \"#FB5FAB\",\n                    \"#EA559D\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FCEEF5\",\n                    \"#140610\",\n                    \"#FAD8E9\",\n                    \"#222222\"\n                ],\n                \"Sage\": [\n                    \"#1B9C85\",\n                    \"#178E79\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#EDF6EE\",\n                    \"#06140C\",\n                    \"#D4F3D7\",\n                    \"#222222\"\n                ],\n                \"Flare\": [\n                    \"#FD9800\",\n                    \"#E98C00\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FEF9E1\",\n                    \"#141006\",\n                    \"#F9F0C8\",\n                    \"#222222\"\n                ],\n                \"Maple\": [\n                    \"#FF6210\",\n                    \"#F15808\",\n                    \"#1C0D0A\",\n                    \"#353535\",\n                    \"#FFFFFF\",\n                    \"#FEF1E4\",\n                    \"#140B06\",\n                    \"#E5D7D1\",\n                    \"#222222\"\n                ],\n                \"Birch\": [\n                    \"#737880\",\n                    \"#65696F\",\n                    \"#151616\",\n                    \"#393C40\",\n                    \"#FFFFFF\",\n                    \"#F6F6F6\",\n                    \"#232529\",\n                    \"#F1F0F0\",\n                    \"#222222\"\n                ],\n                \"Dark\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presetNames\": {\n                \"palette_1\": null,\n                \"palette_2\": \"Oak\",\n                \"palette_3\": \"Viola\",\n                \"palette_4\": \"Dark\"\n            },\n            \"flag\": true\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 12:45:45\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'd8590cea-5bb4-43f6-b119-50f486f1cc10', '', '', '2025-11-15 12:45:45', '2025-11-15 12:45:45', '', 0, 'https://mrarif.me/secureswipesolutions/?p=20', 0, 'customize_changeset', '', 0),
(21, 1, '2025-11-15 12:46:00', '2025-11-15 12:46:00', '{\n    \"astra-settings[button-color]\": {\n        \"value\": \"var(--ast-global-color-4)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 12:46:00\"\n    },\n    \"astra-settings[button-h-color]\": {\n        \"value\": \"var(--ast-global-color-4)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 12:46:00\"\n    },\n    \"astra-settings[button-bg-color]\": {\n        \"value\": \"var(--ast-global-color-0)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 12:46:00\"\n    },\n    \"astra-settings[button-bg-h-color]\": {\n        \"value\": \"var(--ast-global-color-1)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 12:46:00\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '772fc356-e292-43f6-8975-b1c684a91dbd', '', '', '2025-11-15 12:46:00', '2025-11-15 12:46:00', '', 0, 'https://mrarif.me/secureswipesolutions/772fc356-e292-43f6-8975-b1c684a91dbd/', 0, 'customize_changeset', '', 0),
(22, 1, '2025-11-15 13:10:22', '2025-11-15 13:10:22', '<h2>Add Your Heading Text Here</h2>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 13:10:22', '2025-11-15 13:10:22', '', 10, 'https://mrarif.me/secureswipesolutions/?p=22', 0, 'revision', '', 0),
(23, 1, '2025-11-15 13:10:23', '2025-11-15 13:10:23', '<h2>Add Your Heading Text Here</h2>		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 13:10:23', '2025-11-15 13:10:23', '', 10, 'https://mrarif.me/secureswipesolutions/?p=23', 0, 'revision', '', 0),
(26, 1, '2025-11-15 13:24:46', '2025-11-15 13:24:46', '', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-15 13:24:46', '2025-11-15 13:24:46', '', 25, 'https://mrarif.me/secureswipesolutions/?p=26', 0, 'revision', '', 0),
(27, 1, '2025-11-15 13:25:41', '2025-11-15 13:25:41', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-2.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-2-300x300.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-2-150x150.jpg 150w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m32.285 314.16-7.187 12.45c-2.208 3.823-7.105 5.136-10.929 2.928-3.823-2.208-5.135-7.105-2.928-10.928l17.318-29.996c2.209-3.826 7.102-5.137 10.928-2.928l29.995 17.318c3.824 2.208 5.136 7.104 2.929 10.928-2.208 3.824-7.105 5.136-10.929 2.928l-14.065-8.12c24.039 96.315 111.204 167.754 214.92 167.754 122.246 0 221.494-99.248 221.494-221.494s-99.248-221.494-221.494-221.494c-108.701 0-199.221 78.47-217.943 181.807-.787 4.345-4.953 7.233-9.298 6.446-4.344-.787-7.233-4.953-6.445-9.298 20.075-110.805 117.13-194.955 233.686-194.955 131.076 0 237.494 106.418 237.494 237.494s-106.418 237.494-237.494 237.494c-110.654 0-203.731-75.842-230.052-178.334zm322.08-139.767h-42.127v-23.243c0-27.81-22.524-50.675-49.882-50.675-27.357 0-49.881 22.865-49.881 50.675v23.243h-42.166v-23.243c0-51.387 41.425-93.439 92.047-93.439 50.623 0 92.009 42.052 92.009 93.439zm-204.672 16h225.326c9.275 0 16.797 7.675 16.797 17.051v181.815c0 9.415-7.522 17.05-16.797 17.05h-225.326c-9.274 0-16.835-7.635-16.835-17.05v-181.815c0-9.376 7.561-17.051 16.835-17.051zm98.043 117.762-24.865-24.865c-6.44-6.44-16.897-6.44-23.337 0-6.441 6.473-6.441 16.897 0 23.338l36.55 36.583c6.44 6.441 16.897 6.441 23.338 0 22.043-22.043 43.82-44.318 65.764-66.461 6.407-6.473 6.374-16.897-.066-23.305-6.441-6.407-16.898-6.373-23.305.067z\"></path></svg>				\n									<h5>\n							Secure Swipe Solutions						\n					</h5>\n									<p>\n						provides reliable ATM placement services that help small and\nmedium businesses save time, boost cashflow, and delivers an enhanced customer\nexperience (without the headaches or hidden fees). 					</p>', 'Why Choose Us', '', 'publish', 'closed', 'closed', '', 'why-choose-us', '', '', '2025-11-25 11:15:43', '2025-11-25 11:15:43', '', 0, 'https://mrarif.me/secureswipesolutions/?page_id=27', 0, 'page', '', 0),
(28, 1, '2025-11-15 13:25:41', '2025-11-15 13:25:41', '', 'Why Choose Us', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2025-11-15 13:25:41', '2025-11-15 13:25:41', '', 27, 'https://mrarif.me/secureswipesolutions/?p=28', 0, 'revision', '', 0),
(29, 1, '2025-11-15 13:26:11', '2025-11-15 13:26:11', '<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Contact Us', '', 'publish', 'closed', 'closed', '', 'contact-us', '', '', '2025-11-22 09:02:25', '2025-11-22 09:02:25', '', 0, 'https://mrarif.me/secureswipesolutions/?page_id=29', 0, 'page', '', 0),
(30, 1, '2025-11-15 13:26:11', '2025-11-15 13:26:11', '', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2025-11-15 13:26:11', '2025-11-15 13:26:11', '', 29, 'https://mrarif.me/secureswipesolutions/?p=30', 0, 'revision', '', 0),
(31, 1, '2025-11-25 09:33:16', '2025-11-15 13:26:52', ' ', '', '', 'publish', 'closed', 'closed', '', '31', '', '', '2025-11-25 09:33:16', '2025-11-25 09:33:16', '', 0, 'https://mrarif.me/secureswipesolutions/?p=31', 1, 'nav_menu_item', '', 0),
(32, 1, '2025-11-25 09:33:16', '2025-11-15 13:26:52', ' ', '', '', 'publish', 'closed', 'closed', '', '32', '', '', '2025-11-25 09:33:16', '2025-11-25 09:33:16', '', 0, 'https://mrarif.me/secureswipesolutions/?p=32', 6, 'nav_menu_item', '', 0),
(33, 1, '2025-11-15 13:26:35', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2025-11-15 13:26:35', '0000-00-00 00:00:00', '', 0, 'https://mrarif.me/secureswipesolutions/?p=33', 1, 'nav_menu_item', '', 0),
(34, 1, '2025-11-25 09:33:16', '2025-11-15 13:26:52', ' ', '', '', 'publish', 'closed', 'closed', '', '34', '', '', '2025-11-25 09:33:16', '2025-11-25 09:33:16', '', 0, 'https://mrarif.me/secureswipesolutions/?p=34', 3, 'nav_menu_item', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(35, 1, '2025-11-25 09:33:16', '2025-11-15 13:26:52', ' ', '', '', 'publish', 'closed', 'closed', '', '35', '', '', '2025-11-25 09:33:16', '2025-11-25 09:33:16', '', 0, 'https://mrarif.me/secureswipesolutions/?p=35', 5, 'nav_menu_item', '', 0),
(36, 1, '2025-11-15 13:38:26', '2025-11-15 13:38:26', '', 'banner (6)', '', 'inherit', 'open', 'closed', '', 'banner-6', '', '', '2025-11-15 13:38:26', '2025-11-15 13:38:26', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/banner-6.jpg', 0, 'attachment', 'image/jpeg', 0),
(37, 1, '2025-11-15 13:38:29', '2025-11-15 13:38:29', '', 'banner (5)', '', 'inherit', 'open', 'closed', '', 'banner-5', '', '', '2025-11-15 13:38:29', '2025-11-15 13:38:29', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/banner-5.jpg', 0, 'attachment', 'image/jpeg', 0),
(38, 1, '2025-11-15 13:39:04', '2025-11-15 13:39:04', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 13:39:04', '2025-11-15 13:39:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=38', 0, 'revision', '', 0),
(39, 1, '2025-11-15 13:39:04', '2025-11-15 13:39:04', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 13:39:04', '2025-11-15 13:39:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=39', 0, 'revision', '', 0),
(40, 1, '2025-11-15 13:39:04', '2025-11-15 13:39:04', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 13:39:04', '2025-11-15 13:39:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=40', 0, 'revision', '', 0),
(41, 1, '2025-11-15 13:43:32', '2025-11-15 13:43:32', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 13:43:32', '2025-11-15 13:43:32', '', 10, 'https://mrarif.me/secureswipesolutions/?p=41', 0, 'revision', '', 0),
(42, 1, '2025-11-15 13:43:32', '2025-11-15 13:43:32', '', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 13:43:32', '2025-11-15 13:43:32', '', 10, 'https://mrarif.me/secureswipesolutions/?p=42', 0, 'revision', '', 0),
(43, 1, '2025-11-15 13:43:33', '2025-11-15 13:43:33', '<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.					<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 13:43:33', '2025-11-15 13:43:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=43', 0, 'revision', '', 0),
(44, 1, '2025-11-15 13:44:36', '2025-11-15 13:44:36', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"350\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3.png 350w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3-300x144.png 300w\" sizes=\"(max-width: 350px) 100vw, 350px\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'publish', 'closed', 'closed', '', 'elementor-header-44', '', '', '2025-11-27 12:10:27', '2025-11-27 12:10:27', '', 0, 'https://mrarif.me/secureswipesolutions/?post_type=elementor_library&#038;p=44', 0, 'elementor_library', '', 0),
(45, 1, '2025-11-15 13:44:36', '2025-11-15 13:44:36', '', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-15 13:44:36', '2025-11-15 13:44:36', '', 44, 'https://mrarif.me/secureswipesolutions/?p=45', 0, 'revision', '', 0),
(46, 1, '2025-11-15 13:47:36', '2025-11-15 13:47:36', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-15 13:47:36', '2025-11-15 13:47:36', '', 44, 'https://mrarif.me/secureswipesolutions/?p=46', 0, 'revision', '', 0),
(49, 1, '2025-11-15 13:52:03', '2025-11-15 13:52:03', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																	<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-15 13:52:03', '2025-11-15 13:52:03', '', 44, 'https://mrarif.me/secureswipesolutions/?p=49', 0, 'revision', '', 0),
(48, 1, '2025-11-15 13:49:19', '2025-11-15 13:49:19', '', 'Design Full Logo', '', 'inherit', 'open', 'closed', '', 'design-full-logo', '', '', '2025-11-15 13:49:19', '2025-11-15 13:49:19', '', 44, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif', 0, 'attachment', 'image/avif', 0),
(50, 1, '2025-11-15 13:53:12', '2025-11-15 13:53:12', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																	<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-15 13:53:12', '2025-11-15 13:53:12', '', 44, 'https://mrarif.me/secureswipesolutions/?p=50', 0, 'revision', '', 0),
(51, 1, '2025-11-15 13:53:52', '2025-11-15 13:53:52', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																	<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />																					<a href=\"#\">\n									Click here\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-15 13:53:52', '2025-11-15 13:53:52', '', 44, 'https://mrarif.me/secureswipesolutions/?p=51', 0, 'revision', '', 0),
(52, 1, '2025-11-15 13:54:21', '2025-11-15 13:54:21', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																	<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-15 13:54:21', '2025-11-15 13:54:21', '', 44, 'https://mrarif.me/secureswipesolutions/?p=52', 0, 'revision', '', 0),
(53, 1, '2025-11-15 13:57:24', '2025-11-15 13:57:24', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																	<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-15 13:57:24', '2025-11-15 13:57:24', '', 44, 'https://mrarif.me/secureswipesolutions/?p=53', 0, 'revision', '', 0),
(54, 1, '2025-11-15 13:58:16', '2025-11-15 13:58:16', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-15 13:58:16', '2025-11-15 13:58:16', '', 44, 'https://mrarif.me/secureswipesolutions/?p=54', 0, 'revision', '', 0),
(55, 1, '2025-11-15 13:58:59', '2025-11-15 13:58:59', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-15 13:58:59', '2025-11-15 13:58:59', '', 44, 'https://mrarif.me/secureswipesolutions/?p=55', 0, 'revision', '', 0),
(56, 1, '2025-11-15 14:02:06', '2025-11-15 14:02:06', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-15 14:02:06', '2025-11-15 14:02:06', '', 44, 'https://mrarif.me/secureswipesolutions/?p=56', 0, 'revision', '', 0),
(57, 1, '2025-11-15 14:02:41', '2025-11-15 14:02:41', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-15 14:02:41', '2025-11-15 14:02:41', '', 44, 'https://mrarif.me/secureswipesolutions/?p=57', 0, 'revision', '', 0),
(58, 1, '2025-11-15 14:03:31', '2025-11-15 14:03:31', '<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.					<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:03:31', '2025-11-15 14:03:31', '', 10, 'https://mrarif.me/secureswipesolutions/?p=58', 0, 'revision', '', 0),
(59, 1, '2025-11-15 14:03:31', '2025-11-15 14:03:31', '<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.					<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:03:31', '2025-11-15 14:03:31', '', 10, 'https://mrarif.me/secureswipesolutions/?p=59', 0, 'revision', '', 0),
(60, 1, '2025-11-15 14:03:31', '2025-11-15 14:03:31', '<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.					<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:03:31', '2025-11-15 14:03:31', '', 10, 'https://mrarif.me/secureswipesolutions/?p=60', 0, 'revision', '', 0),
(61, 1, '2025-11-15 14:03:45', '2025-11-15 14:03:45', '<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.					<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:03:45', '2025-11-15 14:03:45', '', 10, 'https://mrarif.me/secureswipesolutions/?p=61', 0, 'revision', '', 0),
(62, 1, '2025-11-15 14:03:45', '2025-11-15 14:03:45', '<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.					<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:03:45', '2025-11-15 14:03:45', '', 10, 'https://mrarif.me/secureswipesolutions/?p=62', 0, 'revision', '', 0),
(63, 1, '2025-11-15 14:03:45', '2025-11-15 14:03:45', '<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.					<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:03:45', '2025-11-15 14:03:45', '', 10, 'https://mrarif.me/secureswipesolutions/?p=63', 0, 'revision', '', 0),
(64, 1, '2025-11-15 14:04:09', '2025-11-15 14:04:09', 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/cropped-Design-Full-Logo.avif', 'cropped-Design-Full-Logo.avif', '', 'inherit', 'open', 'closed', '', 'cropped-design-full-logo-avif', '', '', '2025-11-15 14:04:09', '2025-11-15 14:04:09', '', 48, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/cropped-Design-Full-Logo.avif', 0, 'attachment', 'image/avif', 0),
(65, 1, '2025-11-15 14:04:33', '2025-11-15 14:04:33', '<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.					<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:04:33', '2025-11-15 14:04:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=65', 0, 'revision', '', 0),
(66, 1, '2025-11-15 14:04:33', '2025-11-15 14:04:33', '<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.					<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:04:33', '2025-11-15 14:04:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=66', 0, 'revision', '', 0),
(67, 1, '2025-11-15 14:04:33', '2025-11-15 14:04:33', '<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.					<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:04:33', '2025-11-15 14:04:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=67', 0, 'revision', '', 0),
(68, 1, '2025-11-15 14:07:13', '2025-11-15 14:07:13', '<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.					<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:07:13', '2025-11-15 14:07:13', '', 10, 'https://mrarif.me/secureswipesolutions/?p=68', 0, 'revision', '', 0),
(69, 1, '2025-11-15 14:07:13', '2025-11-15 14:07:13', '<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.					<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:07:13', '2025-11-15 14:07:13', '', 10, 'https://mrarif.me/secureswipesolutions/?p=69', 0, 'revision', '', 0),
(70, 1, '2025-11-15 14:07:13', '2025-11-15 14:07:13', '<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.					<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:07:13', '2025-11-15 14:07:13', '', 10, 'https://mrarif.me/secureswipesolutions/?p=70', 0, 'revision', '', 0),
(71, 1, '2025-11-15 14:07:42', '2025-11-15 14:07:42', '<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.					<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:07:42', '2025-11-15 14:07:42', '', 10, 'https://mrarif.me/secureswipesolutions/?p=71', 0, 'revision', '', 0),
(72, 1, '2025-11-15 14:07:42', '2025-11-15 14:07:42', '<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.					<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Click here\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:07:42', '2025-11-15 14:07:42', '', 10, 'https://mrarif.me/secureswipesolutions/?p=72', 0, 'revision', '', 0),
(73, 1, '2025-11-15 14:07:42', '2025-11-15 14:07:42', '<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.					<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:07:42', '2025-11-15 14:07:42', '', 10, 'https://mrarif.me/secureswipesolutions/?p=73', 0, 'revision', '', 0),
(74, 1, '2025-11-15 14:11:18', '2025-11-15 14:11:18', '<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.					<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:11:18', '2025-11-15 14:11:18', '', 10, 'https://mrarif.me/secureswipesolutions/?p=74', 0, 'revision', '', 0),
(75, 1, '2025-11-15 14:11:19', '2025-11-15 14:11:19', '<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.					<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:11:19', '2025-11-15 14:11:19', '', 10, 'https://mrarif.me/secureswipesolutions/?p=75', 0, 'revision', '', 0),
(76, 1, '2025-11-15 14:11:19', '2025-11-15 14:11:19', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:11:19', '2025-11-15 14:11:19', '', 10, 'https://mrarif.me/secureswipesolutions/?p=76', 0, 'revision', '', 0),
(77, 1, '2025-11-15 14:12:23', '2025-11-15 14:12:23', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:12:23', '2025-11-15 14:12:23', '', 10, 'https://mrarif.me/secureswipesolutions/?p=77', 0, 'revision', '', 0),
(78, 1, '2025-11-15 14:12:23', '2025-11-15 14:12:23', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! !  We place free ATMs in high-traffic businesses, so you never miss a cash sale.We install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:12:23', '2025-11-15 14:12:23', '', 10, 'https://mrarif.me/secureswipesolutions/?p=78', 0, 'revision', '', 0),
(79, 1, '2025-11-15 14:12:23', '2025-11-15 14:12:23', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:12:23', '2025-11-15 14:12:23', '', 10, 'https://mrarif.me/secureswipesolutions/?p=79', 0, 'revision', '', 0),
(80, 1, '2025-11-15 14:18:09', '2025-11-15 14:18:09', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:18:09', '2025-11-15 14:18:09', '', 10, 'https://mrarif.me/secureswipesolutions/?p=80', 0, 'revision', '', 0),
(81, 1, '2025-11-15 14:18:09', '2025-11-15 14:18:09', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:18:09', '2025-11-15 14:18:09', '', 10, 'https://mrarif.me/secureswipesolutions/?p=81', 0, 'revision', '', 0),
(82, 1, '2025-11-15 14:18:09', '2025-11-15 14:18:09', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:18:09', '2025-11-15 14:18:09', '', 10, 'https://mrarif.me/secureswipesolutions/?p=82', 0, 'revision', '', 0),
(83, 1, '2025-11-15 14:25:21', '2025-11-15 14:25:21', '', '28717047 (1)', '', 'inherit', 'open', 'closed', '', '28717047-1', '', '', '2025-11-15 14:25:21', '2025-11-15 14:25:21', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/28717047-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(84, 1, '2025-11-15 14:25:31', '2025-11-15 14:25:31', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:25:31', '2025-11-15 14:25:31', '', 10, 'https://mrarif.me/secureswipesolutions/?p=84', 0, 'revision', '', 0),
(85, 1, '2025-11-15 14:25:32', '2025-11-15 14:25:32', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:25:32', '2025-11-15 14:25:32', '', 10, 'https://mrarif.me/secureswipesolutions/?p=85', 0, 'revision', '', 0),
(86, 1, '2025-11-15 14:25:32', '2025-11-15 14:25:32', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:25:32', '2025-11-15 14:25:32', '', 10, 'https://mrarif.me/secureswipesolutions/?p=86', 0, 'revision', '', 0),
(87, 1, '2025-11-15 14:27:29', '2025-11-15 14:27:29', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:27:29', '2025-11-15 14:27:29', '', 10, 'https://mrarif.me/secureswipesolutions/?p=87', 0, 'revision', '', 0),
(88, 1, '2025-11-15 14:27:29', '2025-11-15 14:27:29', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:27:29', '2025-11-15 14:27:29', '', 10, 'https://mrarif.me/secureswipesolutions/?p=88', 0, 'revision', '', 0),
(89, 1, '2025-11-15 14:27:30', '2025-11-15 14:27:30', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:27:30', '2025-11-15 14:27:30', '', 10, 'https://mrarif.me/secureswipesolutions/?p=89', 0, 'revision', '', 0),
(90, 1, '2025-11-15 14:28:49', '2025-11-15 14:28:49', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:28:49', '2025-11-15 14:28:49', '', 10, 'https://mrarif.me/secureswipesolutions/?p=90', 0, 'revision', '', 0),
(91, 1, '2025-11-15 14:28:49', '2025-11-15 14:28:49', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:28:49', '2025-11-15 14:28:49', '', 10, 'https://mrarif.me/secureswipesolutions/?p=91', 0, 'revision', '', 0),
(92, 1, '2025-11-15 14:28:49', '2025-11-15 14:28:49', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:28:49', '2025-11-15 14:28:49', '', 10, 'https://mrarif.me/secureswipesolutions/?p=92', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(93, 1, '2025-11-15 14:29:07', '2025-11-15 14:29:07', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:29:07', '2025-11-15 14:29:07', '', 10, 'https://mrarif.me/secureswipesolutions/?p=93', 0, 'revision', '', 0),
(94, 1, '2025-11-15 14:29:07', '2025-11-15 14:29:07', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:29:07', '2025-11-15 14:29:07', '', 10, 'https://mrarif.me/secureswipesolutions/?p=94', 0, 'revision', '', 0),
(95, 1, '2025-11-15 14:29:07', '2025-11-15 14:29:07', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:29:07', '2025-11-15 14:29:07', '', 10, 'https://mrarif.me/secureswipesolutions/?p=95', 0, 'revision', '', 0),
(96, 1, '2025-11-15 14:29:23', '2025-11-15 14:29:23', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:29:23', '2025-11-15 14:29:23', '', 10, 'https://mrarif.me/secureswipesolutions/?p=96', 0, 'revision', '', 0),
(97, 1, '2025-11-15 14:29:24', '2025-11-15 14:29:24', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:29:24', '2025-11-15 14:29:24', '', 10, 'https://mrarif.me/secureswipesolutions/?p=97', 0, 'revision', '', 0),
(98, 1, '2025-11-15 14:29:24', '2025-11-15 14:29:24', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:29:24', '2025-11-15 14:29:24', '', 10, 'https://mrarif.me/secureswipesolutions/?p=98', 0, 'revision', '', 0),
(99, 1, '2025-11-15 14:30:24', '2025-11-15 14:30:24', '', '3222 (1)', '', 'inherit', 'open', 'closed', '', '3222-1', '', '', '2025-11-15 14:30:24', '2025-11-15 14:30:24', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/3222-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(100, 1, '2025-11-15 14:30:35', '2025-11-15 14:30:35', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:30:35', '2025-11-15 14:30:35', '', 10, 'https://mrarif.me/secureswipesolutions/?p=100', 0, 'revision', '', 0),
(101, 1, '2025-11-15 14:30:35', '2025-11-15 14:30:35', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:30:35', '2025-11-15 14:30:35', '', 10, 'https://mrarif.me/secureswipesolutions/?p=101', 0, 'revision', '', 0),
(102, 1, '2025-11-15 14:30:35', '2025-11-15 14:30:35', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:30:35', '2025-11-15 14:30:35', '', 10, 'https://mrarif.me/secureswipesolutions/?p=102', 0, 'revision', '', 0),
(103, 1, '2025-11-15 14:30:53', '2025-11-15 14:30:53', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:30:53', '2025-11-15 14:30:53', '', 10, 'https://mrarif.me/secureswipesolutions/?p=103', 0, 'revision', '', 0),
(104, 1, '2025-11-15 14:30:53', '2025-11-15 14:30:53', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:30:53', '2025-11-15 14:30:53', '', 10, 'https://mrarif.me/secureswipesolutions/?p=104', 0, 'revision', '', 0),
(105, 1, '2025-11-15 14:30:54', '2025-11-15 14:30:54', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:30:54', '2025-11-15 14:30:54', '', 10, 'https://mrarif.me/secureswipesolutions/?p=105', 0, 'revision', '', 0),
(106, 1, '2025-11-15 14:31:12', '2025-11-15 14:31:12', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:31:12', '2025-11-15 14:31:12', '', 10, 'https://mrarif.me/secureswipesolutions/?p=106', 0, 'revision', '', 0),
(107, 1, '2025-11-15 14:31:12', '2025-11-15 14:31:12', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:31:12', '2025-11-15 14:31:12', '', 10, 'https://mrarif.me/secureswipesolutions/?p=107', 0, 'revision', '', 0),
(108, 1, '2025-11-15 14:31:13', '2025-11-15 14:31:13', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:31:13', '2025-11-15 14:31:13', '', 10, 'https://mrarif.me/secureswipesolutions/?p=108', 0, 'revision', '', 0),
(109, 1, '2025-11-15 14:31:38', '2025-11-15 14:31:38', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-15 14:31:38', '2025-11-15 14:31:38', '', 44, 'https://mrarif.me/secureswipesolutions/?p=109', 0, 'revision', '', 0),
(110, 1, '2025-11-15 14:32:49', '2025-11-15 14:32:49', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:32:49', '2025-11-15 14:32:49', '', 10, 'https://mrarif.me/secureswipesolutions/?p=110', 0, 'revision', '', 0),
(111, 1, '2025-11-15 14:32:49', '2025-11-15 14:32:49', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:32:49', '2025-11-15 14:32:49', '', 10, 'https://mrarif.me/secureswipesolutions/?p=111', 0, 'revision', '', 0),
(112, 1, '2025-11-15 14:32:49', '2025-11-15 14:32:49', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:32:49', '2025-11-15 14:32:49', '', 10, 'https://mrarif.me/secureswipesolutions/?p=112', 0, 'revision', '', 0),
(113, 1, '2025-11-15 14:33:21', '2025-11-15 14:33:21', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:33:21', '2025-11-15 14:33:21', '', 10, 'https://mrarif.me/secureswipesolutions/?p=113', 0, 'revision', '', 0),
(114, 1, '2025-11-15 14:33:21', '2025-11-15 14:33:21', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:33:21', '2025-11-15 14:33:21', '', 10, 'https://mrarif.me/secureswipesolutions/?p=114', 0, 'revision', '', 0),
(115, 1, '2025-11-15 14:33:22', '2025-11-15 14:33:22', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:33:22', '2025-11-15 14:33:22', '', 10, 'https://mrarif.me/secureswipesolutions/?p=115', 0, 'revision', '', 0),
(116, 1, '2025-11-15 14:33:42', '2025-11-15 14:33:42', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:33:42', '2025-11-15 14:33:42', '', 10, 'https://mrarif.me/secureswipesolutions/?p=116', 0, 'revision', '', 0),
(117, 1, '2025-11-15 14:33:42', '2025-11-15 14:33:42', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:33:42', '2025-11-15 14:33:42', '', 10, 'https://mrarif.me/secureswipesolutions/?p=117', 0, 'revision', '', 0),
(118, 1, '2025-11-15 14:33:43', '2025-11-15 14:33:43', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:33:43', '2025-11-15 14:33:43', '', 10, 'https://mrarif.me/secureswipesolutions/?p=118', 0, 'revision', '', 0),
(119, 1, '2025-11-15 14:34:37', '2025-11-15 14:34:37', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-15 14:34:37', '2025-11-15 14:34:37', '', 44, 'https://mrarif.me/secureswipesolutions/?p=119', 0, 'revision', '', 0),
(120, 1, '2025-11-15 14:34:56', '2025-11-15 14:34:56', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-15 14:34:56', '2025-11-15 14:34:56', '', 44, 'https://mrarif.me/secureswipesolutions/?p=120', 0, 'revision', '', 0),
(121, 1, '2025-11-15 14:35:15', '2025-11-15 14:35:15', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:35:15', '2025-11-15 14:35:15', '', 10, 'https://mrarif.me/secureswipesolutions/?p=121', 0, 'revision', '', 0),
(122, 1, '2025-11-15 14:35:15', '2025-11-15 14:35:15', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:35:15', '2025-11-15 14:35:15', '', 10, 'https://mrarif.me/secureswipesolutions/?p=122', 0, 'revision', '', 0),
(126, 1, '2025-11-15 14:35:51', '2025-11-15 14:35:51', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:35:51', '2025-11-15 14:35:51', '', 10, 'https://mrarif.me/secureswipesolutions/?p=126', 0, 'revision', '', 0),
(123, 1, '2025-11-15 14:35:15', '2025-11-15 14:35:15', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:35:15', '2025-11-15 14:35:15', '', 10, 'https://mrarif.me/secureswipesolutions/?p=123', 0, 'revision', '', 0),
(124, 1, '2025-11-15 14:35:50', '2025-11-15 14:35:50', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:35:50', '2025-11-15 14:35:50', '', 10, 'https://mrarif.me/secureswipesolutions/?p=124', 0, 'revision', '', 0),
(125, 1, '2025-11-15 14:35:51', '2025-11-15 14:35:51', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n						<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:35:51', '2025-11-15 14:35:51', '', 10, 'https://mrarif.me/secureswipesolutions/?p=125', 0, 'revision', '', 0),
(127, 1, '2025-11-15 14:37:09', '2025-11-15 14:37:09', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:37:09', '2025-11-15 14:37:09', '', 10, 'https://mrarif.me/secureswipesolutions/?p=127', 0, 'revision', '', 0),
(128, 1, '2025-11-15 14:37:09', '2025-11-15 14:37:09', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:37:09', '2025-11-15 14:37:09', '', 10, 'https://mrarif.me/secureswipesolutions/?p=128', 0, 'revision', '', 0),
(129, 1, '2025-11-15 14:37:10', '2025-11-15 14:37:10', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:37:10', '2025-11-15 14:37:10', '', 10, 'https://mrarif.me/secureswipesolutions/?p=129', 0, 'revision', '', 0),
(130, 1, '2025-11-15 14:37:34', '2025-11-15 14:37:34', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:37:34', '2025-11-15 14:37:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=130', 0, 'revision', '', 0),
(131, 1, '2025-11-15 14:37:34', '2025-11-15 14:37:34', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:37:34', '2025-11-15 14:37:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=131', 0, 'revision', '', 0),
(132, 1, '2025-11-15 14:37:34', '2025-11-15 14:37:34', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:37:34', '2025-11-15 14:37:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=132', 0, 'revision', '', 0),
(133, 1, '2025-11-15 14:37:57', '2025-11-15 14:37:57', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:37:57', '2025-11-15 14:37:57', '', 10, 'https://mrarif.me/secureswipesolutions/?p=133', 0, 'revision', '', 0),
(134, 1, '2025-11-15 14:37:57', '2025-11-15 14:37:57', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:37:57', '2025-11-15 14:37:57', '', 10, 'https://mrarif.me/secureswipesolutions/?p=134', 0, 'revision', '', 0),
(135, 1, '2025-11-15 14:37:58', '2025-11-15 14:37:58', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:37:58', '2025-11-15 14:37:58', '', 10, 'https://mrarif.me/secureswipesolutions/?p=135', 0, 'revision', '', 0),
(136, 1, '2025-11-15 14:38:17', '2025-11-15 14:38:17', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:38:17', '2025-11-15 14:38:17', '', 10, 'https://mrarif.me/secureswipesolutions/?p=136', 0, 'revision', '', 0),
(137, 1, '2025-11-15 14:38:17', '2025-11-15 14:38:17', '<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:38:17', '2025-11-15 14:38:17', '', 10, 'https://mrarif.me/secureswipesolutions/?p=137', 0, 'revision', '', 0),
(138, 1, '2025-11-15 14:38:17', '2025-11-15 14:38:17', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:38:17', '2025-11-15 14:38:17', '', 10, 'https://mrarif.me/secureswipesolutions/?p=138', 0, 'revision', '', 0),
(139, 1, '2025-11-15 14:38:54', '2025-11-15 14:38:54', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:38:54', '2025-11-15 14:38:54', '', 10, 'https://mrarif.me/secureswipesolutions/?p=139', 0, 'revision', '', 0),
(140, 1, '2025-11-15 14:38:54', '2025-11-15 14:38:54', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:38:54', '2025-11-15 14:38:54', '', 10, 'https://mrarif.me/secureswipesolutions/?p=140', 0, 'revision', '', 0),
(141, 1, '2025-11-15 14:38:54', '2025-11-15 14:38:54', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:38:54', '2025-11-15 14:38:54', '', 10, 'https://mrarif.me/secureswipesolutions/?p=141', 0, 'revision', '', 0),
(142, 1, '2025-11-15 14:39:41', '2025-11-15 14:39:41', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:39:41', '2025-11-15 14:39:41', '', 10, 'https://mrarif.me/secureswipesolutions/?p=142', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(143, 1, '2025-11-15 14:39:41', '2025-11-15 14:39:41', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:39:41', '2025-11-15 14:39:41', '', 10, 'https://mrarif.me/secureswipesolutions/?p=143', 0, 'revision', '', 0),
(144, 1, '2025-11-15 14:39:41', '2025-11-15 14:39:41', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:39:41', '2025-11-15 14:39:41', '', 10, 'https://mrarif.me/secureswipesolutions/?p=144', 0, 'revision', '', 0),
(145, 1, '2025-11-15 14:40:36', '2025-11-15 14:40:36', '{\n    \"astra-settings[headings-font-family]\": {\n        \"value\": \"Verdana\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 14:40:36\"\n    },\n    \"astra-settings[headings-font-weight]\": {\n        \"value\": \"400\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 14:40:36\"\n    },\n    \"astra-settings[font-size-h1]\": {\n        \"value\": {\n            \"desktop\": 63,\n            \"tablet\": 30,\n            \"mobile\": 30,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-15 14:40:36\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '4273f60a-ef7f-4f4f-8164-0cb12654ee43', '', '', '2025-11-15 14:40:36', '2025-11-15 14:40:36', '', 0, 'https://mrarif.me/secureswipesolutions/4273f60a-ef7f-4f4f-8164-0cb12654ee43/', 0, 'customize_changeset', '', 0),
(146, 1, '2025-11-15 14:41:13', '2025-11-15 14:41:13', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:41:13', '2025-11-15 14:41:13', '', 10, 'https://mrarif.me/secureswipesolutions/?p=146', 0, 'revision', '', 0),
(147, 1, '2025-11-15 14:41:13', '2025-11-15 14:41:13', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:41:13', '2025-11-15 14:41:13', '', 10, 'https://mrarif.me/secureswipesolutions/?p=147', 0, 'revision', '', 0),
(148, 1, '2025-11-15 14:41:13', '2025-11-15 14:41:13', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:41:13', '2025-11-15 14:41:13', '', 10, 'https://mrarif.me/secureswipesolutions/?p=148', 0, 'revision', '', 0),
(149, 1, '2025-11-15 14:44:29', '2025-11-15 14:44:29', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:44:29', '2025-11-15 14:44:29', '', 10, 'https://mrarif.me/secureswipesolutions/?p=149', 0, 'revision', '', 0),
(150, 1, '2025-11-15 14:44:29', '2025-11-15 14:44:29', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:44:29', '2025-11-15 14:44:29', '', 10, 'https://mrarif.me/secureswipesolutions/?p=150', 0, 'revision', '', 0),
(151, 1, '2025-11-15 14:44:29', '2025-11-15 14:44:29', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:44:29', '2025-11-15 14:44:29', '', 10, 'https://mrarif.me/secureswipesolutions/?p=151', 0, 'revision', '', 0),
(152, 1, '2025-11-15 14:45:24', '2025-11-15 14:45:24', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:45:24', '2025-11-15 14:45:24', '', 10, 'https://mrarif.me/secureswipesolutions/?p=152', 0, 'revision', '', 0),
(153, 1, '2025-11-15 14:45:24', '2025-11-15 14:45:24', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:45:24', '2025-11-15 14:45:24', '', 10, 'https://mrarif.me/secureswipesolutions/?p=153', 0, 'revision', '', 0),
(154, 1, '2025-11-15 14:45:25', '2025-11-15 14:45:25', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:45:25', '2025-11-15 14:45:25', '', 10, 'https://mrarif.me/secureswipesolutions/?p=154', 0, 'revision', '', 0),
(155, 1, '2025-11-15 14:45:36', '2025-11-15 14:45:36', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:45:36', '2025-11-15 14:45:36', '', 10, 'https://mrarif.me/secureswipesolutions/?p=155', 0, 'revision', '', 0),
(156, 1, '2025-11-15 14:45:36', '2025-11-15 14:45:36', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:45:36', '2025-11-15 14:45:36', '', 10, 'https://mrarif.me/secureswipesolutions/?p=156', 0, 'revision', '', 0),
(157, 1, '2025-11-15 14:45:37', '2025-11-15 14:45:37', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-15 14:45:37', '2025-11-15 14:45:37', '', 10, 'https://mrarif.me/secureswipesolutions/?p=157', 0, 'revision', '', 0),
(158, 1, '2025-11-16 05:22:12', '2025-11-16 05:22:12', '', '72966 (1)', '', 'inherit', 'open', 'closed', '', '72966-1', '', '', '2025-11-16 05:22:12', '2025-11-16 05:22:12', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(159, 1, '2025-11-16 05:22:31', '2025-11-16 05:22:31', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:22:31', '2025-11-16 05:22:31', '', 10, 'https://mrarif.me/secureswipesolutions/?p=159', 0, 'revision', '', 0),
(160, 1, '2025-11-16 05:22:31', '2025-11-16 05:22:31', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:22:31', '2025-11-16 05:22:31', '', 10, 'https://mrarif.me/secureswipesolutions/?p=160', 0, 'revision', '', 0),
(161, 1, '2025-11-16 05:22:31', '2025-11-16 05:22:31', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:22:31', '2025-11-16 05:22:31', '', 10, 'https://mrarif.me/secureswipesolutions/?p=161', 0, 'revision', '', 0),
(162, 1, '2025-11-16 05:22:46', '2025-11-16 05:22:46', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:22:46', '2025-11-16 05:22:46', '', 10, 'https://mrarif.me/secureswipesolutions/?p=162', 0, 'revision', '', 0),
(163, 1, '2025-11-16 05:22:46', '2025-11-16 05:22:46', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:22:46', '2025-11-16 05:22:46', '', 10, 'https://mrarif.me/secureswipesolutions/?p=163', 0, 'revision', '', 0),
(164, 1, '2025-11-16 05:22:46', '2025-11-16 05:22:46', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:22:46', '2025-11-16 05:22:46', '', 10, 'https://mrarif.me/secureswipesolutions/?p=164', 0, 'revision', '', 0),
(165, 1, '2025-11-16 05:25:14', '2025-11-16 05:25:14', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:25:14', '2025-11-16 05:25:14', '', 10, 'https://mrarif.me/secureswipesolutions/?p=165', 0, 'revision', '', 0),
(166, 1, '2025-11-16 05:25:14', '2025-11-16 05:25:14', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:25:14', '2025-11-16 05:25:14', '', 10, 'https://mrarif.me/secureswipesolutions/?p=166', 0, 'revision', '', 0),
(167, 1, '2025-11-16 05:25:14', '2025-11-16 05:25:14', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:25:14', '2025-11-16 05:25:14', '', 10, 'https://mrarif.me/secureswipesolutions/?p=167', 0, 'revision', '', 0),
(168, 1, '2025-11-16 05:25:59', '2025-11-16 05:25:59', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:25:59', '2025-11-16 05:25:59', '', 10, 'https://mrarif.me/secureswipesolutions/?p=168', 0, 'revision', '', 0),
(169, 1, '2025-11-16 05:25:59', '2025-11-16 05:25:59', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:25:59', '2025-11-16 05:25:59', '', 10, 'https://mrarif.me/secureswipesolutions/?p=169', 0, 'revision', '', 0),
(170, 1, '2025-11-16 05:25:59', '2025-11-16 05:25:59', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:25:59', '2025-11-16 05:25:59', '', 10, 'https://mrarif.me/secureswipesolutions/?p=170', 0, 'revision', '', 0),
(171, 1, '2025-11-16 05:26:53', '2025-11-16 05:26:53', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:26:53', '2025-11-16 05:26:53', '', 10, 'https://mrarif.me/secureswipesolutions/?p=171', 0, 'revision', '', 0),
(172, 1, '2025-11-16 05:26:53', '2025-11-16 05:26:53', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:26:53', '2025-11-16 05:26:53', '', 10, 'https://mrarif.me/secureswipesolutions/?p=172', 0, 'revision', '', 0),
(173, 1, '2025-11-16 05:26:53', '2025-11-16 05:26:53', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:26:53', '2025-11-16 05:26:53', '', 10, 'https://mrarif.me/secureswipesolutions/?p=173', 0, 'revision', '', 0),
(174, 1, '2025-11-16 05:28:05', '2025-11-16 05:28:05', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:28:05', '2025-11-16 05:28:05', '', 10, 'https://mrarif.me/secureswipesolutions/?p=174', 0, 'revision', '', 0),
(175, 1, '2025-11-16 05:28:05', '2025-11-16 05:28:05', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:28:05', '2025-11-16 05:28:05', '', 10, 'https://mrarif.me/secureswipesolutions/?p=175', 0, 'revision', '', 0),
(179, 1, '2025-11-16 05:28:33', '2025-11-16 05:28:33', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:28:33', '2025-11-16 05:28:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=179', 0, 'revision', '', 0),
(176, 1, '2025-11-16 05:28:05', '2025-11-16 05:28:05', '<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />																<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:28:05', '2025-11-16 05:28:05', '', 10, 'https://mrarif.me/secureswipesolutions/?p=176', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(177, 1, '2025-11-16 05:28:33', '2025-11-16 05:28:33', '<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />																<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:28:33', '2025-11-16 05:28:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=177', 0, 'revision', '', 0),
(178, 1, '2025-11-16 05:28:33', '2025-11-16 05:28:33', '<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />																<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:28:33', '2025-11-16 05:28:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=178', 0, 'revision', '', 0),
(180, 1, '2025-11-16 05:29:00', '2025-11-16 05:29:00', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:29:00', '2025-11-16 05:29:00', '', 10, 'https://mrarif.me/secureswipesolutions/?p=180', 0, 'revision', '', 0),
(181, 1, '2025-11-16 05:29:00', '2025-11-16 05:29:00', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:29:00', '2025-11-16 05:29:00', '', 10, 'https://mrarif.me/secureswipesolutions/?p=181', 0, 'revision', '', 0),
(182, 1, '2025-11-16 05:29:00', '2025-11-16 05:29:00', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:29:00', '2025-11-16 05:29:00', '', 10, 'https://mrarif.me/secureswipesolutions/?p=182', 0, 'revision', '', 0),
(183, 1, '2025-11-16 05:29:40', '2025-11-16 05:29:40', '{\n    \"astra-settings[headings-font-family]\": {\n        \"value\": \"\'Rubik\', sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-16 05:29:40\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '7a51cdbe-1664-4523-92b8-e5ceab40d68f', '', '', '2025-11-16 05:29:40', '2025-11-16 05:29:40', '', 0, 'https://mrarif.me/secureswipesolutions/7a51cdbe-1664-4523-92b8-e5ceab40d68f/', 0, 'customize_changeset', '', 0),
(184, 1, '2025-11-16 05:30:01', '2025-11-16 05:30:01', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:30:01', '2025-11-16 05:30:01', '', 10, 'https://mrarif.me/secureswipesolutions/?p=184', 0, 'revision', '', 0),
(185, 1, '2025-11-16 05:30:01', '2025-11-16 05:30:01', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:30:01', '2025-11-16 05:30:01', '', 10, 'https://mrarif.me/secureswipesolutions/?p=185', 0, 'revision', '', 0),
(186, 1, '2025-11-16 05:30:01', '2025-11-16 05:30:01', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:30:01', '2025-11-16 05:30:01', '', 10, 'https://mrarif.me/secureswipesolutions/?p=186', 0, 'revision', '', 0),
(187, 1, '2025-11-16 05:36:55', '2025-11-16 05:36:55', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:36:55', '2025-11-16 05:36:55', '', 10, 'https://mrarif.me/secureswipesolutions/?p=187', 0, 'revision', '', 0),
(188, 1, '2025-11-16 05:36:55', '2025-11-16 05:36:55', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:36:55', '2025-11-16 05:36:55', '', 10, 'https://mrarif.me/secureswipesolutions/?p=188', 0, 'revision', '', 0),
(189, 1, '2025-11-16 05:36:55', '2025-11-16 05:36:55', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:36:55', '2025-11-16 05:36:55', '', 10, 'https://mrarif.me/secureswipesolutions/?p=189', 0, 'revision', '', 0),
(190, 1, '2025-11-16 05:37:11', '2025-11-16 05:37:11', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:37:11', '2025-11-16 05:37:11', '', 10, 'https://mrarif.me/secureswipesolutions/?p=190', 0, 'revision', '', 0),
(191, 1, '2025-11-16 05:37:11', '2025-11-16 05:37:11', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:37:11', '2025-11-16 05:37:11', '', 10, 'https://mrarif.me/secureswipesolutions/?p=191', 0, 'revision', '', 0),
(192, 1, '2025-11-16 05:37:11', '2025-11-16 05:37:11', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:37:11', '2025-11-16 05:37:11', '', 10, 'https://mrarif.me/secureswipesolutions/?p=192', 0, 'revision', '', 0),
(193, 1, '2025-11-16 05:39:43', '2025-11-16 05:39:43', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:39:43', '2025-11-16 05:39:43', '', 10, 'https://mrarif.me/secureswipesolutions/?p=193', 0, 'revision', '', 0),
(194, 1, '2025-11-16 05:39:43', '2025-11-16 05:39:43', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:39:43', '2025-11-16 05:39:43', '', 10, 'https://mrarif.me/secureswipesolutions/?p=194', 0, 'revision', '', 0),
(195, 1, '2025-11-16 05:39:43', '2025-11-16 05:39:43', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:39:43', '2025-11-16 05:39:43', '', 10, 'https://mrarif.me/secureswipesolutions/?p=195', 0, 'revision', '', 0),
(196, 1, '2025-11-16 05:40:16', '2025-11-16 05:40:16', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:40:16', '2025-11-16 05:40:16', '', 10, 'https://mrarif.me/secureswipesolutions/?p=196', 0, 'revision', '', 0),
(197, 1, '2025-11-16 05:40:16', '2025-11-16 05:40:16', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:40:16', '2025-11-16 05:40:16', '', 10, 'https://mrarif.me/secureswipesolutions/?p=197', 0, 'revision', '', 0),
(198, 1, '2025-11-16 05:40:16', '2025-11-16 05:40:16', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:40:16', '2025-11-16 05:40:16', '', 10, 'https://mrarif.me/secureswipesolutions/?p=198', 0, 'revision', '', 0),
(199, 1, '2025-11-16 05:43:04', '2025-11-16 05:43:04', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:43:04', '2025-11-16 05:43:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=199', 0, 'revision', '', 0),
(200, 1, '2025-11-16 05:43:04', '2025-11-16 05:43:04', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:43:04', '2025-11-16 05:43:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=200', 0, 'revision', '', 0),
(201, 1, '2025-11-16 05:43:04', '2025-11-16 05:43:04', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:43:04', '2025-11-16 05:43:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=201', 0, 'revision', '', 0),
(202, 1, '2025-11-16 05:43:27', '2025-11-16 05:43:27', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:43:27', '2025-11-16 05:43:27', '', 10, 'https://mrarif.me/secureswipesolutions/?p=202', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(203, 1, '2025-11-16 05:43:27', '2025-11-16 05:43:27', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:43:27', '2025-11-16 05:43:27', '', 10, 'https://mrarif.me/secureswipesolutions/?p=203', 0, 'revision', '', 0),
(204, 1, '2025-11-16 05:43:27', '2025-11-16 05:43:27', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:43:27', '2025-11-16 05:43:27', '', 10, 'https://mrarif.me/secureswipesolutions/?p=204', 0, 'revision', '', 0),
(205, 1, '2025-11-16 05:44:03', '2025-11-16 05:44:03', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:44:03', '2025-11-16 05:44:03', '', 10, 'https://mrarif.me/secureswipesolutions/?p=205', 0, 'revision', '', 0),
(206, 1, '2025-11-16 05:44:03', '2025-11-16 05:44:03', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:44:03', '2025-11-16 05:44:03', '', 10, 'https://mrarif.me/secureswipesolutions/?p=206', 0, 'revision', '', 0),
(207, 1, '2025-11-16 05:44:04', '2025-11-16 05:44:04', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:44:04', '2025-11-16 05:44:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=207', 0, 'revision', '', 0),
(208, 1, '2025-11-16 05:44:34', '2025-11-16 05:44:34', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:44:34', '2025-11-16 05:44:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=208', 0, 'revision', '', 0),
(209, 1, '2025-11-16 05:44:34', '2025-11-16 05:44:34', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:44:34', '2025-11-16 05:44:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=209', 0, 'revision', '', 0),
(210, 1, '2025-11-16 05:44:34', '2025-11-16 05:44:34', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:44:34', '2025-11-16 05:44:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=210', 0, 'revision', '', 0),
(211, 1, '2025-11-16 05:46:04', '2025-11-16 05:46:04', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:46:04', '2025-11-16 05:46:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=211', 0, 'revision', '', 0),
(212, 1, '2025-11-16 05:46:04', '2025-11-16 05:46:04', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:46:04', '2025-11-16 05:46:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=212', 0, 'revision', '', 0),
(213, 1, '2025-11-16 05:46:04', '2025-11-16 05:46:04', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:46:04', '2025-11-16 05:46:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=213', 0, 'revision', '', 0),
(214, 1, '2025-11-16 05:47:04', '2025-11-16 05:47:04', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:47:04', '2025-11-16 05:47:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=214', 0, 'revision', '', 0),
(215, 1, '2025-11-16 05:47:04', '2025-11-16 05:47:04', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:47:04', '2025-11-16 05:47:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=215', 0, 'revision', '', 0),
(216, 1, '2025-11-16 05:47:04', '2025-11-16 05:47:04', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:47:04', '2025-11-16 05:47:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=216', 0, 'revision', '', 0),
(217, 1, '2025-11-16 05:47:26', '2025-11-16 05:47:26', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:47:26', '2025-11-16 05:47:26', '', 10, 'https://mrarif.me/secureswipesolutions/?p=217', 0, 'revision', '', 0),
(218, 1, '2025-11-16 05:47:26', '2025-11-16 05:47:26', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:47:26', '2025-11-16 05:47:26', '', 10, 'https://mrarif.me/secureswipesolutions/?p=218', 0, 'revision', '', 0),
(219, 1, '2025-11-16 05:47:26', '2025-11-16 05:47:26', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:47:26', '2025-11-16 05:47:26', '', 10, 'https://mrarif.me/secureswipesolutions/?p=219', 0, 'revision', '', 0),
(220, 1, '2025-11-16 05:47:59', '2025-11-16 05:47:59', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:47:59', '2025-11-16 05:47:59', '', 10, 'https://mrarif.me/secureswipesolutions/?p=220', 0, 'revision', '', 0),
(221, 1, '2025-11-16 05:47:59', '2025-11-16 05:47:59', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:47:59', '2025-11-16 05:47:59', '', 10, 'https://mrarif.me/secureswipesolutions/?p=221', 0, 'revision', '', 0),
(222, 1, '2025-11-16 05:47:59', '2025-11-16 05:47:59', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:47:59', '2025-11-16 05:47:59', '', 10, 'https://mrarif.me/secureswipesolutions/?p=222', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(223, 1, '2025-11-16 05:48:33', '2025-11-16 05:48:33', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:48:33', '2025-11-16 05:48:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=223', 0, 'revision', '', 0),
(224, 1, '2025-11-16 05:48:33', '2025-11-16 05:48:33', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:48:33', '2025-11-16 05:48:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=224', 0, 'revision', '', 0),
(225, 1, '2025-11-16 05:48:33', '2025-11-16 05:48:33', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:48:33', '2025-11-16 05:48:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=225', 0, 'revision', '', 0),
(226, 1, '2025-11-16 05:52:52', '2025-11-16 05:52:52', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:52:52', '2025-11-16 05:52:52', '', 10, 'https://mrarif.me/secureswipesolutions/?p=226', 0, 'revision', '', 0),
(227, 1, '2025-11-16 05:52:52', '2025-11-16 05:52:52', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:52:52', '2025-11-16 05:52:52', '', 10, 'https://mrarif.me/secureswipesolutions/?p=227', 0, 'revision', '', 0),
(228, 1, '2025-11-16 05:52:52', '2025-11-16 05:52:52', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:52:52', '2025-11-16 05:52:52', '', 10, 'https://mrarif.me/secureswipesolutions/?p=228', 0, 'revision', '', 0),
(229, 1, '2025-11-16 05:53:13', '2025-11-16 05:53:13', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:53:13', '2025-11-16 05:53:13', '', 10, 'https://mrarif.me/secureswipesolutions/?p=229', 0, 'revision', '', 0),
(230, 1, '2025-11-16 05:53:13', '2025-11-16 05:53:13', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:53:13', '2025-11-16 05:53:13', '', 10, 'https://mrarif.me/secureswipesolutions/?p=230', 0, 'revision', '', 0),
(231, 1, '2025-11-16 05:53:13', '2025-11-16 05:53:13', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:53:13', '2025-11-16 05:53:13', '', 10, 'https://mrarif.me/secureswipesolutions/?p=231', 0, 'revision', '', 0),
(232, 1, '2025-11-16 05:53:37', '2025-11-16 05:53:37', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:53:37', '2025-11-16 05:53:37', '', 10, 'https://mrarif.me/secureswipesolutions/?p=232', 0, 'revision', '', 0),
(233, 1, '2025-11-16 05:53:37', '2025-11-16 05:53:37', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:53:37', '2025-11-16 05:53:37', '', 10, 'https://mrarif.me/secureswipesolutions/?p=233', 0, 'revision', '', 0),
(234, 1, '2025-11-16 05:53:37', '2025-11-16 05:53:37', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:53:37', '2025-11-16 05:53:37', '', 10, 'https://mrarif.me/secureswipesolutions/?p=234', 0, 'revision', '', 0),
(235, 1, '2025-11-16 05:54:02', '2025-11-16 05:54:02', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:54:02', '2025-11-16 05:54:02', '', 10, 'https://mrarif.me/secureswipesolutions/?p=235', 0, 'revision', '', 0),
(236, 1, '2025-11-16 05:54:02', '2025-11-16 05:54:02', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:54:02', '2025-11-16 05:54:02', '', 10, 'https://mrarif.me/secureswipesolutions/?p=236', 0, 'revision', '', 0),
(237, 1, '2025-11-16 05:54:02', '2025-11-16 05:54:02', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:54:02', '2025-11-16 05:54:02', '', 10, 'https://mrarif.me/secureswipesolutions/?p=237', 0, 'revision', '', 0),
(238, 1, '2025-11-16 05:55:29', '2025-11-16 05:55:29', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:55:29', '2025-11-16 05:55:29', '', 10, 'https://mrarif.me/secureswipesolutions/?p=238', 0, 'revision', '', 0),
(239, 1, '2025-11-16 05:55:29', '2025-11-16 05:55:29', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:55:29', '2025-11-16 05:55:29', '', 10, 'https://mrarif.me/secureswipesolutions/?p=239', 0, 'revision', '', 0),
(240, 1, '2025-11-16 05:55:29', '2025-11-16 05:55:29', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:55:29', '2025-11-16 05:55:29', '', 10, 'https://mrarif.me/secureswipesolutions/?p=240', 0, 'revision', '', 0),
(241, 1, '2025-11-16 05:58:26', '2025-11-16 05:58:26', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:58:26', '2025-11-16 05:58:26', '', 10, 'https://mrarif.me/secureswipesolutions/?p=241', 0, 'revision', '', 0),
(242, 1, '2025-11-16 05:58:26', '2025-11-16 05:58:26', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:58:26', '2025-11-16 05:58:26', '', 10, 'https://mrarif.me/secureswipesolutions/?p=242', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(243, 1, '2025-11-16 05:58:26', '2025-11-16 05:58:26', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:58:26', '2025-11-16 05:58:26', '', 10, 'https://mrarif.me/secureswipesolutions/?p=243', 0, 'revision', '', 0),
(244, 1, '2025-11-16 05:58:43', '2025-11-16 05:58:43', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:58:43', '2025-11-16 05:58:43', '', 10, 'https://mrarif.me/secureswipesolutions/?p=244', 0, 'revision', '', 0),
(245, 1, '2025-11-16 05:58:44', '2025-11-16 05:58:44', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:58:44', '2025-11-16 05:58:44', '', 10, 'https://mrarif.me/secureswipesolutions/?p=245', 0, 'revision', '', 0),
(246, 1, '2025-11-16 05:58:44', '2025-11-16 05:58:44', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:58:44', '2025-11-16 05:58:44', '', 10, 'https://mrarif.me/secureswipesolutions/?p=246', 0, 'revision', '', 0),
(247, 1, '2025-11-16 05:59:24', '2025-11-16 05:59:24', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:59:24', '2025-11-16 05:59:24', '', 10, 'https://mrarif.me/secureswipesolutions/?p=247', 0, 'revision', '', 0),
(248, 1, '2025-11-16 05:59:24', '2025-11-16 05:59:24', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:59:24', '2025-11-16 05:59:24', '', 10, 'https://mrarif.me/secureswipesolutions/?p=248', 0, 'revision', '', 0),
(249, 1, '2025-11-16 05:59:24', '2025-11-16 05:59:24', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 05:59:24', '2025-11-16 05:59:24', '', 10, 'https://mrarif.me/secureswipesolutions/?p=249', 0, 'revision', '', 0),
(250, 1, '2025-11-16 05:59:52', '2025-11-16 05:59:52', '', 'money_12976025', '', 'inherit', 'open', 'closed', '', 'money_12976025', '', '', '2025-11-16 05:59:52', '2025-11-16 05:59:52', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/money_12976025.svg', 0, 'attachment', 'image/svg+xml', 0),
(251, 1, '2025-11-16 06:00:20', '2025-11-16 06:00:20', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:00:20', '2025-11-16 06:00:20', '', 10, 'https://mrarif.me/secureswipesolutions/?p=251', 0, 'revision', '', 0),
(252, 1, '2025-11-16 06:00:20', '2025-11-16 06:00:20', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:00:20', '2025-11-16 06:00:20', '', 10, 'https://mrarif.me/secureswipesolutions/?p=252', 0, 'revision', '', 0),
(253, 1, '2025-11-16 06:00:21', '2025-11-16 06:00:21', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:00:21', '2025-11-16 06:00:21', '', 10, 'https://mrarif.me/secureswipesolutions/?p=253', 0, 'revision', '', 0),
(254, 1, '2025-11-16 06:00:38', '2025-11-16 06:00:38', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:00:38', '2025-11-16 06:00:38', '', 10, 'https://mrarif.me/secureswipesolutions/?p=254', 0, 'revision', '', 0),
(255, 1, '2025-11-16 06:00:38', '2025-11-16 06:00:38', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:00:38', '2025-11-16 06:00:38', '', 10, 'https://mrarif.me/secureswipesolutions/?p=255', 0, 'revision', '', 0),
(256, 1, '2025-11-16 06:00:38', '2025-11-16 06:00:38', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:00:38', '2025-11-16 06:00:38', '', 10, 'https://mrarif.me/secureswipesolutions/?p=256', 0, 'revision', '', 0),
(260, 1, '2025-11-16 06:03:30', '2025-11-16 06:03:30', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:03:30', '2025-11-16 06:03:30', '', 10, 'https://mrarif.me/secureswipesolutions/?p=260', 0, 'revision', '', 0),
(258, 1, '2025-11-16 06:03:30', '2025-11-16 06:03:30', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:03:30', '2025-11-16 06:03:30', '', 10, 'https://mrarif.me/secureswipesolutions/?p=258', 0, 'revision', '', 0),
(259, 1, '2025-11-16 06:03:30', '2025-11-16 06:03:30', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:03:30', '2025-11-16 06:03:30', '', 10, 'https://mrarif.me/secureswipesolutions/?p=259', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(261, 1, '2025-11-16 06:04:24', '2025-11-16 06:04:24', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:04:24', '2025-11-16 06:04:24', '', 10, 'https://mrarif.me/secureswipesolutions/?p=261', 0, 'revision', '', 0),
(262, 1, '2025-11-16 06:04:24', '2025-11-16 06:04:24', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:04:24', '2025-11-16 06:04:24', '', 10, 'https://mrarif.me/secureswipesolutions/?p=262', 0, 'revision', '', 0),
(263, 1, '2025-11-16 06:04:24', '2025-11-16 06:04:24', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:04:24', '2025-11-16 06:04:24', '', 10, 'https://mrarif.me/secureswipesolutions/?p=263', 0, 'revision', '', 0),
(264, 1, '2025-11-16 06:06:25', '2025-11-16 06:06:25', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:06:25', '2025-11-16 06:06:25', '', 10, 'https://mrarif.me/secureswipesolutions/?p=264', 0, 'revision', '', 0),
(265, 1, '2025-11-16 06:06:25', '2025-11-16 06:06:25', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:06:25', '2025-11-16 06:06:25', '', 10, 'https://mrarif.me/secureswipesolutions/?p=265', 0, 'revision', '', 0),
(266, 1, '2025-11-16 06:06:25', '2025-11-16 06:06:25', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:06:25', '2025-11-16 06:06:25', '', 10, 'https://mrarif.me/secureswipesolutions/?p=266', 0, 'revision', '', 0),
(267, 1, '2025-11-16 06:10:53', '2025-11-16 06:10:53', '', 'briefcase_2962083', '', 'inherit', 'open', 'closed', '', 'briefcase_2962083', '', '', '2025-11-16 06:10:53', '2025-11-16 06:10:53', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/briefcase_2962083.svg', 0, 'attachment', 'image/svg+xml', 0),
(293, 1, '2025-11-16 06:35:02', '2025-11-16 06:35:02', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:35:02', '2025-11-16 06:35:02', '', 10, 'https://mrarif.me/secureswipesolutions/?p=293', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(290, 1, '2025-11-16 06:32:31', '2025-11-16 06:32:31', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:32:31', '2025-11-16 06:32:31', '', 10, 'https://mrarif.me/secureswipesolutions/?p=290', 0, 'revision', '', 0),
(272, 1, '2025-11-16 06:12:11', '2025-11-16 06:12:11', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:12:11', '2025-11-16 06:12:11', '', 10, 'https://mrarif.me/secureswipesolutions/?p=272', 0, 'revision', '', 0),
(269, 1, '2025-11-16 06:11:58', '2025-11-16 06:11:58', '', 'daimond_15864800', '', 'inherit', 'open', 'closed', '', 'daimond_15864800', '', '', '2025-11-16 06:11:58', '2025-11-16 06:11:58', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/daimond_15864800.svg', 0, 'attachment', 'image/svg+xml', 0),
(270, 1, '2025-11-16 06:12:11', '2025-11-16 06:12:11', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:12:11', '2025-11-16 06:12:11', '', 10, 'https://mrarif.me/secureswipesolutions/?p=270', 0, 'revision', '', 0),
(271, 1, '2025-11-16 06:12:11', '2025-11-16 06:12:11', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:12:11', '2025-11-16 06:12:11', '', 10, 'https://mrarif.me/secureswipesolutions/?p=271', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(273, 1, '2025-11-16 06:12:34', '2025-11-16 06:12:34', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:12:34', '2025-11-16 06:12:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=273', 0, 'revision', '', 0),
(274, 1, '2025-11-16 06:12:34', '2025-11-16 06:12:34', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:12:34', '2025-11-16 06:12:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=274', 0, 'revision', '', 0),
(275, 1, '2025-11-16 06:12:35', '2025-11-16 06:12:35', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:12:35', '2025-11-16 06:12:35', '', 10, 'https://mrarif.me/secureswipesolutions/?p=275', 0, 'revision', '', 0),
(276, 1, '2025-11-16 06:14:39', '2025-11-16 06:14:39', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:14:39', '2025-11-16 06:14:39', '', 10, 'https://mrarif.me/secureswipesolutions/?p=276', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(277, 1, '2025-11-16 06:14:39', '2025-11-16 06:14:39', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:14:39', '2025-11-16 06:14:39', '', 10, 'https://mrarif.me/secureswipesolutions/?p=277', 0, 'revision', '', 0),
(278, 1, '2025-11-16 06:14:39', '2025-11-16 06:14:39', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:14:39', '2025-11-16 06:14:39', '', 10, 'https://mrarif.me/secureswipesolutions/?p=278', 0, 'revision', '', 0),
(279, 1, '2025-11-16 06:20:09', '2025-11-16 06:20:09', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:20:09', '2025-11-16 06:20:09', '', 10, 'https://mrarif.me/secureswipesolutions/?p=279', 0, 'revision', '', 0),
(280, 1, '2025-11-16 06:20:09', '2025-11-16 06:20:09', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:20:09', '2025-11-16 06:20:09', '', 10, 'https://mrarif.me/secureswipesolutions/?p=280', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(281, 1, '2025-11-16 06:20:09', '2025-11-16 06:20:09', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:20:09', '2025-11-16 06:20:09', '', 10, 'https://mrarif.me/secureswipesolutions/?p=281', 0, 'revision', '', 0),
(282, 1, '2025-11-16 06:28:11', '2025-11-16 06:28:11', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:28:11', '2025-11-16 06:28:11', '', 10, 'https://mrarif.me/secureswipesolutions/?p=282', 0, 'revision', '', 0),
(283, 1, '2025-11-16 06:28:11', '2025-11-16 06:28:11', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:28:11', '2025-11-16 06:28:11', '', 10, 'https://mrarif.me/secureswipesolutions/?p=283', 0, 'revision', '', 0),
(284, 1, '2025-11-16 06:28:12', '2025-11-16 06:28:12', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:28:12', '2025-11-16 06:28:12', '', 10, 'https://mrarif.me/secureswipesolutions/?p=284', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(285, 1, '2025-11-16 06:30:20', '2025-11-16 06:30:20', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:30:20', '2025-11-16 06:30:20', '', 10, 'https://mrarif.me/secureswipesolutions/?p=285', 0, 'revision', '', 0),
(286, 1, '2025-11-16 06:30:20', '2025-11-16 06:30:20', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:30:20', '2025-11-16 06:30:20', '', 10, 'https://mrarif.me/secureswipesolutions/?p=286', 0, 'revision', '', 0),
(287, 1, '2025-11-16 06:30:21', '2025-11-16 06:30:21', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:30:21', '2025-11-16 06:30:21', '', 10, 'https://mrarif.me/secureswipesolutions/?p=287', 0, 'revision', '', 0),
(288, 1, '2025-11-16 06:32:30', '2025-11-16 06:32:30', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:32:30', '2025-11-16 06:32:30', '', 10, 'https://mrarif.me/secureswipesolutions/?p=288', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(289, 1, '2025-11-16 06:32:31', '2025-11-16 06:32:31', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:32:31', '2025-11-16 06:32:31', '', 10, 'https://mrarif.me/secureswipesolutions/?p=289', 0, 'revision', '', 0),
(291, 1, '2025-11-16 06:35:02', '2025-11-16 06:35:02', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:35:02', '2025-11-16 06:35:02', '', 10, 'https://mrarif.me/secureswipesolutions/?p=291', 0, 'revision', '', 0),
(292, 1, '2025-11-16 06:35:02', '2025-11-16 06:35:02', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							This is the heading						\n					</h3>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:35:02', '2025-11-16 06:35:02', '', 10, 'https://mrarif.me/secureswipesolutions/?p=292', 0, 'revision', '', 0),
(294, 1, '2025-11-16 06:39:22', '2025-11-16 06:39:22', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:39:22', '2025-11-16 06:39:22', '', 10, 'https://mrarif.me/secureswipesolutions/?p=294', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(295, 1, '2025-11-16 06:39:22', '2025-11-16 06:39:22', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:39:22', '2025-11-16 06:39:22', '', 10, 'https://mrarif.me/secureswipesolutions/?p=295', 0, 'revision', '', 0),
(296, 1, '2025-11-16 06:39:22', '2025-11-16 06:39:22', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:39:22', '2025-11-16 06:39:22', '', 10, 'https://mrarif.me/secureswipesolutions/?p=296', 0, 'revision', '', 0),
(297, 1, '2025-11-16 06:52:54', '2025-11-16 06:52:54', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:52:54', '2025-11-16 06:52:54', '', 10, 'https://mrarif.me/secureswipesolutions/?p=297', 0, 'revision', '', 0),
(298, 1, '2025-11-16 06:52:54', '2025-11-16 06:52:54', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:52:54', '2025-11-16 06:52:54', '', 10, 'https://mrarif.me/secureswipesolutions/?p=298', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(299, 1, '2025-11-16 06:52:54', '2025-11-16 06:52:54', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:52:54', '2025-11-16 06:52:54', '', 10, 'https://mrarif.me/secureswipesolutions/?p=299', 0, 'revision', '', 0),
(300, 1, '2025-11-16 06:59:22', '2025-11-16 06:59:22', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:59:22', '2025-11-16 06:59:22', '', 10, 'https://mrarif.me/secureswipesolutions/?p=300', 0, 'revision', '', 0),
(301, 1, '2025-11-16 06:59:22', '2025-11-16 06:59:22', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:59:22', '2025-11-16 06:59:22', '', 10, 'https://mrarif.me/secureswipesolutions/?p=301', 0, 'revision', '', 0),
(302, 1, '2025-11-16 06:59:22', '2025-11-16 06:59:22', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:59:22', '2025-11-16 06:59:22', '', 10, 'https://mrarif.me/secureswipesolutions/?p=302', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(303, 1, '2025-11-16 06:59:58', '2025-11-16 06:59:58', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:59:58', '2025-11-16 06:59:58', '', 10, 'https://mrarif.me/secureswipesolutions/?p=303', 0, 'revision', '', 0),
(304, 1, '2025-11-16 06:59:58', '2025-11-16 06:59:58', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:59:58', '2025-11-16 06:59:58', '', 10, 'https://mrarif.me/secureswipesolutions/?p=304', 0, 'revision', '', 0),
(305, 1, '2025-11-16 06:59:58', '2025-11-16 06:59:58', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 06:59:58', '2025-11-16 06:59:58', '', 10, 'https://mrarif.me/secureswipesolutions/?p=305', 0, 'revision', '', 0),
(306, 1, '2025-11-16 07:00:25', '2025-11-16 07:00:25', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:00:25', '2025-11-16 07:00:25', '', 10, 'https://mrarif.me/secureswipesolutions/?p=306', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(307, 1, '2025-11-16 07:00:25', '2025-11-16 07:00:25', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:00:25', '2025-11-16 07:00:25', '', 10, 'https://mrarif.me/secureswipesolutions/?p=307', 0, 'revision', '', 0),
(308, 1, '2025-11-16 07:00:25', '2025-11-16 07:00:25', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:00:25', '2025-11-16 07:00:25', '', 10, 'https://mrarif.me/secureswipesolutions/?p=308', 0, 'revision', '', 0),
(309, 1, '2025-11-16 07:01:49', '2025-11-16 07:01:49', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:01:49', '2025-11-16 07:01:49', '', 10, 'https://mrarif.me/secureswipesolutions/?p=309', 0, 'revision', '', 0),
(310, 1, '2025-11-16 07:01:49', '2025-11-16 07:01:49', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:01:49', '2025-11-16 07:01:49', '', 10, 'https://mrarif.me/secureswipesolutions/?p=310', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(311, 1, '2025-11-16 07:01:49', '2025-11-16 07:01:49', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:01:49', '2025-11-16 07:01:49', '', 10, 'https://mrarif.me/secureswipesolutions/?p=311', 0, 'revision', '', 0),
(312, 1, '2025-11-16 07:03:32', '2025-11-16 07:03:32', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:03:32', '2025-11-16 07:03:32', '', 10, 'https://mrarif.me/secureswipesolutions/?p=312', 0, 'revision', '', 0),
(313, 1, '2025-11-16 07:03:32', '2025-11-16 07:03:32', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:03:32', '2025-11-16 07:03:32', '', 10, 'https://mrarif.me/secureswipesolutions/?p=313', 0, 'revision', '', 0),
(314, 1, '2025-11-16 07:03:32', '2025-11-16 07:03:32', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:03:32', '2025-11-16 07:03:32', '', 10, 'https://mrarif.me/secureswipesolutions/?p=314', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(315, 1, '2025-11-16 07:05:57', '2025-11-16 07:05:57', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:05:57', '2025-11-16 07:05:57', '', 10, 'https://mrarif.me/secureswipesolutions/?p=315', 0, 'revision', '', 0),
(316, 1, '2025-11-16 07:05:57', '2025-11-16 07:05:57', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:05:57', '2025-11-16 07:05:57', '', 10, 'https://mrarif.me/secureswipesolutions/?p=316', 0, 'revision', '', 0),
(317, 1, '2025-11-16 07:05:57', '2025-11-16 07:05:57', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:05:57', '2025-11-16 07:05:57', '', 10, 'https://mrarif.me/secureswipesolutions/?p=317', 0, 'revision', '', 0),
(318, 1, '2025-11-16 07:08:45', '2025-11-16 07:08:45', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:08:45', '2025-11-16 07:08:45', '', 10, 'https://mrarif.me/secureswipesolutions/?p=318', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(319, 1, '2025-11-16 07:08:45', '2025-11-16 07:08:45', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:08:45', '2025-11-16 07:08:45', '', 10, 'https://mrarif.me/secureswipesolutions/?p=319', 0, 'revision', '', 0),
(320, 1, '2025-11-16 07:08:45', '2025-11-16 07:08:45', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:08:45', '2025-11-16 07:08:45', '', 10, 'https://mrarif.me/secureswipesolutions/?p=320', 0, 'revision', '', 0),
(321, 1, '2025-11-16 07:11:37', '2025-11-16 07:11:37', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:11:37', '2025-11-16 07:11:37', '', 10, 'https://mrarif.me/secureswipesolutions/?p=321', 0, 'revision', '', 0),
(322, 1, '2025-11-16 07:11:37', '2025-11-16 07:11:37', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:11:37', '2025-11-16 07:11:37', '', 10, 'https://mrarif.me/secureswipesolutions/?p=322', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(323, 1, '2025-11-16 07:11:37', '2025-11-16 07:11:37', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:11:37', '2025-11-16 07:11:37', '', 10, 'https://mrarif.me/secureswipesolutions/?p=323', 0, 'revision', '', 0),
(324, 1, '2025-11-16 07:11:48', '2025-11-16 07:11:48', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:11:48', '2025-11-16 07:11:48', '', 10, 'https://mrarif.me/secureswipesolutions/?p=324', 0, 'revision', '', 0),
(325, 1, '2025-11-16 07:11:48', '2025-11-16 07:11:48', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:11:48', '2025-11-16 07:11:48', '', 10, 'https://mrarif.me/secureswipesolutions/?p=325', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(326, 1, '2025-11-16 07:11:48', '2025-11-16 07:11:48', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:11:48', '2025-11-16 07:11:48', '', 10, 'https://mrarif.me/secureswipesolutions/?p=326', 0, 'revision', '', 0),
(327, 1, '2025-11-16 07:12:27', '2025-11-16 07:12:27', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:12:27', '2025-11-16 07:12:27', '', 10, 'https://mrarif.me/secureswipesolutions/?p=327', 0, 'revision', '', 0),
(328, 1, '2025-11-16 07:12:27', '2025-11-16 07:12:27', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:12:27', '2025-11-16 07:12:27', '', 10, 'https://mrarif.me/secureswipesolutions/?p=328', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(329, 1, '2025-11-16 07:12:27', '2025-11-16 07:12:27', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:12:27', '2025-11-16 07:12:27', '', 10, 'https://mrarif.me/secureswipesolutions/?p=329', 0, 'revision', '', 0),
(330, 1, '2025-11-16 07:14:40', '2025-11-16 07:14:40', '', 'document_15371462', '', 'inherit', 'open', 'closed', '', 'document_15371462', '', '', '2025-11-16 07:14:40', '2025-11-16 07:14:40', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/document_15371462.svg', 0, 'attachment', 'image/svg+xml', 0),
(331, 1, '2025-11-16 07:15:35', '2025-11-16 07:15:35', '', 'employment_3526038', '', 'inherit', 'open', 'closed', '', 'employment_3526038', '', '', '2025-11-16 07:15:35', '2025-11-16 07:15:35', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/employment_3526038.svg', 0, 'attachment', 'image/svg+xml', 0),
(332, 1, '2025-11-16 07:17:57', '2025-11-16 07:17:57', '', 'business-problem_9952781', '', 'inherit', 'open', 'closed', '', 'business-problem_9952781', '', '', '2025-11-16 07:17:57', '2025-11-16 07:17:57', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/business-problem_9952781.svg', 0, 'attachment', 'image/svg+xml', 0),
(333, 1, '2025-11-16 07:18:02', '2025-11-16 07:18:02', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:18:02', '2025-11-16 07:18:02', '', 10, 'https://mrarif.me/secureswipesolutions/?p=333', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(334, 1, '2025-11-16 07:18:02', '2025-11-16 07:18:02', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:18:02', '2025-11-16 07:18:02', '', 10, 'https://mrarif.me/secureswipesolutions/?p=334', 0, 'revision', '', 0),
(639, 1, '2025-11-25 07:08:48', '2025-11-25 07:08:48', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							Local Expertise 						\n					</h3>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized\nservice. \n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:08:48', '2025-11-25 07:08:48', '', 10, 'https://mrarif.me/secureswipesolutions/?p=639', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(633, 1, '2025-11-25 07:06:14', '2025-11-25 07:06:14', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:06:14', '2025-11-25 07:06:14', '', 10, 'https://mrarif.me/secureswipesolutions/?p=633', 0, 'revision', '', 0),
(618, 1, '2025-11-25 06:59:32', '2025-11-25 06:59:32', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and oƯer convenient cash access.\nWe handle the installation, maintenance, cash loading, and support.\nWith zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 06:59:32', '2025-11-25 06:59:32', '', 10, 'https://mrarif.me/secureswipesolutions/?p=618', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(335, 1, '2025-11-16 07:18:03', '2025-11-16 07:18:03', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:18:03', '2025-11-16 07:18:03', '', 10, 'https://mrarif.me/secureswipesolutions/?p=335', 0, 'revision', '', 0),
(336, 1, '2025-11-16 07:19:09', '2025-11-16 07:19:09', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:19:09', '2025-11-16 07:19:09', '', 10, 'https://mrarif.me/secureswipesolutions/?p=336', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(337, 1, '2025-11-16 07:19:09', '2025-11-16 07:19:09', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:19:09', '2025-11-16 07:19:09', '', 10, 'https://mrarif.me/secureswipesolutions/?p=337', 0, 'revision', '', 0),
(338, 1, '2025-11-16 07:19:09', '2025-11-16 07:19:09', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:19:09', '2025-11-16 07:19:09', '', 10, 'https://mrarif.me/secureswipesolutions/?p=338', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(339, 1, '2025-11-16 07:26:17', '2025-11-16 07:26:17', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:26:17', '2025-11-16 07:26:17', '', 10, 'https://mrarif.me/secureswipesolutions/?p=339', 0, 'revision', '', 0),
(340, 1, '2025-11-16 07:26:17', '2025-11-16 07:26:17', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:26:17', '2025-11-16 07:26:17', '', 10, 'https://mrarif.me/secureswipesolutions/?p=340', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(341, 1, '2025-11-16 07:26:17', '2025-11-16 07:26:17', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:26:17', '2025-11-16 07:26:17', '', 10, 'https://mrarif.me/secureswipesolutions/?p=341', 0, 'revision', '', 0),
(342, 1, '2025-11-16 07:26:26', '2025-11-16 07:26:26', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:26:26', '2025-11-16 07:26:26', '', 10, 'https://mrarif.me/secureswipesolutions/?p=342', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(343, 1, '2025-11-16 07:26:26', '2025-11-16 07:26:26', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:26:26', '2025-11-16 07:26:26', '', 10, 'https://mrarif.me/secureswipesolutions/?p=343', 0, 'revision', '', 0),
(344, 1, '2025-11-16 07:26:26', '2025-11-16 07:26:26', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:26:26', '2025-11-16 07:26:26', '', 10, 'https://mrarif.me/secureswipesolutions/?p=344', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(345, 1, '2025-11-16 07:29:57', '2025-11-16 07:29:57', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:29:57', '2025-11-16 07:29:57', '', 10, 'https://mrarif.me/secureswipesolutions/?p=345', 0, 'revision', '', 0),
(346, 1, '2025-11-16 07:29:57', '2025-11-16 07:29:57', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:29:57', '2025-11-16 07:29:57', '', 10, 'https://mrarif.me/secureswipesolutions/?p=346', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(347, 1, '2025-11-16 07:29:58', '2025-11-16 07:29:58', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location?  Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:29:58', '2025-11-16 07:29:58', '', 10, 'https://mrarif.me/secureswipesolutions/?p=347', 0, 'revision', '', 0),
(348, 1, '2025-11-16 07:30:38', '2025-11-16 07:30:38', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location?  Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:30:38', '2025-11-16 07:30:38', '', 10, 'https://mrarif.me/secureswipesolutions/?p=348', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(349, 1, '2025-11-16 07:30:39', '2025-11-16 07:30:39', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location?  Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:30:39', '2025-11-16 07:30:39', '', 10, 'https://mrarif.me/secureswipesolutions/?p=349', 0, 'revision', '', 0),
(350, 1, '2025-11-16 07:30:39', '2025-11-16 07:30:39', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location?  Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:30:39', '2025-11-16 07:30:39', '', 10, 'https://mrarif.me/secureswipesolutions/?p=350', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(351, 1, '2025-11-16 07:33:33', '2025-11-16 07:33:33', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location?  Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:33:33', '2025-11-16 07:33:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=351', 0, 'revision', '', 0),
(352, 1, '2025-11-16 07:33:33', '2025-11-16 07:33:33', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location?  Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:33:33', '2025-11-16 07:33:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=352', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(353, 1, '2025-11-16 07:33:34', '2025-11-16 07:33:34', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location?  Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:33:34', '2025-11-16 07:33:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=353', 0, 'revision', '', 0),
(354, 1, '2025-11-16 07:34:21', '2025-11-16 07:34:21', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location?  Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:34:21', '2025-11-16 07:34:21', '', 10, 'https://mrarif.me/secureswipesolutions/?p=354', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(355, 1, '2025-11-16 07:34:21', '2025-11-16 07:34:21', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location?  Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:34:21', '2025-11-16 07:34:21', '', 10, 'https://mrarif.me/secureswipesolutions/?p=355', 0, 'revision', '', 0),
(356, 1, '2025-11-16 07:34:21', '2025-11-16 07:34:21', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location?  Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:34:21', '2025-11-16 07:34:21', '', 10, 'https://mrarif.me/secureswipesolutions/?p=356', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(357, 1, '2025-11-16 07:40:53', '2025-11-16 07:40:53', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location?  Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:40:53', '2025-11-16 07:40:53', '', 10, 'https://mrarif.me/secureswipesolutions/?p=357', 0, 'revision', '', 0),
(358, 1, '2025-11-16 07:40:53', '2025-11-16 07:40:53', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location?  Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:40:53', '2025-11-16 07:40:53', '', 10, 'https://mrarif.me/secureswipesolutions/?p=358', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(359, 1, '2025-11-16 07:40:54', '2025-11-16 07:40:54', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:40:54', '2025-11-16 07:40:54', '', 10, 'https://mrarif.me/secureswipesolutions/?p=359', 0, 'revision', '', 0),
(360, 1, '2025-11-16 07:41:08', '2025-11-16 07:41:08', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:41:08', '2025-11-16 07:41:08', '', 10, 'https://mrarif.me/secureswipesolutions/?p=360', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(361, 1, '2025-11-16 07:41:09', '2025-11-16 07:41:09', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:41:09', '2025-11-16 07:41:09', '', 10, 'https://mrarif.me/secureswipesolutions/?p=361', 0, 'revision', '', 0),
(362, 1, '2025-11-16 07:41:09', '2025-11-16 07:41:09', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:41:09', '2025-11-16 07:41:09', '', 10, 'https://mrarif.me/secureswipesolutions/?p=362', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(363, 1, '2025-11-16 07:43:44', '2025-11-16 07:43:44', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:43:44', '2025-11-16 07:43:44', '', 10, 'https://mrarif.me/secureswipesolutions/?p=363', 0, 'revision', '', 0),
(364, 1, '2025-11-16 07:43:44', '2025-11-16 07:43:44', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:43:44', '2025-11-16 07:43:44', '', 10, 'https://mrarif.me/secureswipesolutions/?p=364', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(365, 1, '2025-11-16 07:43:44', '2025-11-16 07:43:44', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:43:44', '2025-11-16 07:43:44', '', 10, 'https://mrarif.me/secureswipesolutions/?p=365', 0, 'revision', '', 0),
(366, 1, '2025-11-16 07:44:14', '2025-11-16 07:44:14', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:44:14', '2025-11-16 07:44:14', '', 10, 'https://mrarif.me/secureswipesolutions/?p=366', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(367, 1, '2025-11-16 07:44:14', '2025-11-16 07:44:14', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:44:14', '2025-11-16 07:44:14', '', 10, 'https://mrarif.me/secureswipesolutions/?p=367', 0, 'revision', '', 0),
(368, 1, '2025-11-16 07:44:15', '2025-11-16 07:44:15', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:44:15', '2025-11-16 07:44:15', '', 10, 'https://mrarif.me/secureswipesolutions/?p=368', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(369, 1, '2025-11-16 07:45:46', '2025-11-16 07:45:46', '<h5>Quick Link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/services-snapshot/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services Snapshot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Why Choose Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/how-it-works/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										How It Works\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/faqs/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										FAQs\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact Us\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n											<a href=\"tel:8182628674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										Call us (818) 262-8674\n											</a>\n									</li>\n								<li>\n											<a href=\"http://mailto;admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Los%20Angeles&#038;t=m&#038;z=12&#038;output=embed&#038;iwloc=near\"\n					title=\"Los Angeles\"\n					aria-label=\"Los Angeles\"\n			></iframe>\n				Copyright ©2025 - All Rights Reserved.', 'Elementor Footer #369', '', 'publish', 'closed', 'closed', '', 'elementor-footer-369', '', '', '2025-11-25 10:54:44', '2025-11-25 10:54:44', '', 0, 'https://mrarif.me/secureswipesolutions/?post_type=elementor_library&#038;p=369', 0, 'elementor_library', '', 0),
(370, 1, '2025-11-16 07:45:46', '2025-11-16 07:45:46', '', 'Elementor Footer #369', '', 'inherit', 'closed', 'closed', '', '369-revision-v1', '', '', '2025-11-16 07:45:46', '2025-11-16 07:45:46', '', 369, 'https://mrarif.me/secureswipesolutions/?p=370', 0, 'revision', '', 0),
(378, 1, '2025-11-16 08:01:50', '2025-11-16 08:01:50', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-16 08:01:50', '2025-11-16 08:01:50', '', 44, 'https://mrarif.me/secureswipesolutions/?p=378', 0, 'revision', '', 0),
(372, 1, '2025-11-16 07:47:04', '2025-11-16 07:47:04', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:47:04', '2025-11-16 07:47:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=372', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(373, 1, '2025-11-16 07:47:04', '2025-11-16 07:47:04', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:47:04', '2025-11-16 07:47:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=373', 0, 'revision', '', 0),
(374, 1, '2025-11-16 07:47:04', '2025-11-16 07:47:04', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 07:47:04', '2025-11-16 07:47:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=374', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(532, 1, '2025-11-22 07:38:58', '2025-11-22 07:38:58', '<h5>Quick Link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/services-snapshot/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services Snapshot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Why Choose Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact Us\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n											<a href=\"tel:8182628674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										Call us (818) 262-8674\n											</a>\n									</li>\n								<li>\n											<a href=\"http://mailto;admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Greater%20Los%20Angeles&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Greater Los Angeles\"\n					aria-label=\"Greater Los Angeles\"\n			></iframe>\n				Copyright ©2025 - All Rights Reserved.', 'Elementor Footer #369', '', 'inherit', 'closed', 'closed', '', '369-revision-v1', '', '', '2025-11-22 07:38:58', '2025-11-22 07:38:58', '', 369, 'https://mrarif.me/secureswipesolutions/?p=532', 0, 'revision', '', 0),
(375, 1, '2025-11-16 07:53:52', '2025-11-16 07:53:52', '<h5>Quick Link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/services-snapshot/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services Snapshot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Why Choose Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact Us\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n											<a href=\"tel:8182628674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										Call us (818) 262-8674\n											</a>\n									</li>\n								<li>\n											<a href=\"http://mailto;admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=3400%20Cottage%20Way%2C%20Ste%20G222214%2C%20Sacramento%2C%20CA%2095825&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\"\n					aria-label=\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\"\n			></iframe>\n				Copyright ©2025 - All Rights Reserved.', 'Elementor Footer #369', '', 'inherit', 'closed', 'closed', '', '369-revision-v1', '', '', '2025-11-16 07:53:52', '2025-11-16 07:53:52', '', 369, 'https://mrarif.me/secureswipesolutions/?p=375', 0, 'revision', '', 0),
(376, 1, '2025-11-16 07:54:31', '2025-11-16 07:54:31', '<h5>Quick Link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/services-snapshot/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services Snapshot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Why Choose Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact Us\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n											<a href=\"tel:8182628674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										Call us (818) 262-8674\n											</a>\n									</li>\n								<li>\n											<a href=\"http://mailto;admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=3400%20Cottage%20Way%2C%20Ste%20G222214%2C%20Sacramento%2C%20CA%2095825&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\"\n					aria-label=\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\"\n			></iframe>\n				Copyright ©2025 - All Rights Reserved.', 'Elementor Footer #369', '', 'inherit', 'closed', 'closed', '', '369-revision-v1', '', '', '2025-11-16 07:54:31', '2025-11-16 07:54:31', '', 369, 'https://mrarif.me/secureswipesolutions/?p=376', 0, 'revision', '', 0),
(377, 1, '2025-11-16 08:01:33', '2025-11-16 08:01:33', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-16 08:01:33', '2025-11-16 08:01:33', '', 44, 'https://mrarif.me/secureswipesolutions/?p=377', 0, 'revision', '', 0),
(379, 1, '2025-11-16 08:02:26', '2025-11-16 08:02:26', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-16 08:02:26', '2025-11-16 08:02:26', '', 44, 'https://mrarif.me/secureswipesolutions/?p=379', 0, 'revision', '', 0),
(380, 1, '2025-11-16 08:07:15', '2025-11-16 08:07:15', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-16 08:07:15', '2025-11-16 08:07:15', '', 44, 'https://mrarif.me/secureswipesolutions/?p=380', 0, 'revision', '', 0),
(381, 1, '2025-11-16 08:07:29', '2025-11-16 08:07:29', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-16 08:07:29', '2025-11-16 08:07:29', '', 44, 'https://mrarif.me/secureswipesolutions/?p=381', 0, 'revision', '', 0),
(382, 1, '2025-11-16 08:07:57', '2025-11-16 08:07:57', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-16 08:07:57', '2025-11-16 08:07:57', '', 44, 'https://mrarif.me/secureswipesolutions/?p=382', 0, 'revision', '', 0),
(612, 1, '2025-11-25 06:36:00', '2025-11-25 06:36:00', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 06:36:00', '2025-11-25 06:36:00', '', 10, 'https://mrarif.me/secureswipesolutions/?p=612', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(571, 1, '2025-11-22 09:01:34', '2025-11-22 09:01:34', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:01:34', '2025-11-22 09:01:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=571', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(398, 1, '2025-11-16 09:07:00', '2025-11-16 09:07:00', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"#\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:07:00', '2025-11-16 09:07:00', '', 10, 'https://mrarif.me/secureswipesolutions/?p=398', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(388, 1, '2025-11-16 09:00:25', '2025-11-16 09:00:25', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"#\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:00:25', '2025-11-16 09:00:25', '', 10, 'https://mrarif.me/secureswipesolutions/?p=388', 0, 'revision', '', 0),
(384, 1, '2025-11-16 08:57:18', '2025-11-16 08:57:18', '', 'checkmark_3722012', '', 'inherit', 'open', 'closed', '', 'checkmark_3722012', '', '', '2025-11-16 08:57:18', '2025-11-16 08:57:18', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/checkmark_3722012.svg', 0, 'attachment', 'image/svg+xml', 0),
(385, 1, '2025-11-16 08:57:33', '2025-11-16 08:57:33', '', 'badge_16596723', '', 'inherit', 'open', 'closed', '', 'badge_16596723', '', '', '2025-11-16 08:57:33', '2025-11-16 08:57:33', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/badge_16596723.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(386, 1, '2025-11-16 09:00:24', '2025-11-16 09:00:24', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:00:24', '2025-11-16 09:00:24', '', 10, 'https://mrarif.me/secureswipesolutions/?p=386', 0, 'revision', '', 0),
(387, 1, '2025-11-16 09:00:24', '2025-11-16 09:00:24', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n																	<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Add Your Heading Text Here</h2>					<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:00:24', '2025-11-16 09:00:24', '', 10, 'https://mrarif.me/secureswipesolutions/?p=387', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(392, 1, '2025-11-16 09:03:15', '2025-11-16 09:03:15', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"#\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:03:15', '2025-11-16 09:03:15', '', 10, 'https://mrarif.me/secureswipesolutions/?p=392', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(390, 1, '2025-11-16 09:03:15', '2025-11-16 09:03:15', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"#\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:03:15', '2025-11-16 09:03:15', '', 10, 'https://mrarif.me/secureswipesolutions/?p=390', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(391, 1, '2025-11-16 09:03:15', '2025-11-16 09:03:15', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"#\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:03:15', '2025-11-16 09:03:15', '', 10, 'https://mrarif.me/secureswipesolutions/?p=391', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(393, 1, '2025-11-16 09:03:32', '2025-11-16 09:03:32', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"#\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:03:32', '2025-11-16 09:03:32', '', 10, 'https://mrarif.me/secureswipesolutions/?p=393', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(394, 1, '2025-11-16 09:03:33', '2025-11-16 09:03:33', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"#\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:03:33', '2025-11-16 09:03:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=394', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(395, 1, '2025-11-16 09:03:33', '2025-11-16 09:03:33', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"#\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:03:33', '2025-11-16 09:03:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=395', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(396, 1, '2025-11-16 09:07:00', '2025-11-16 09:07:00', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"#\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:07:00', '2025-11-16 09:07:00', '', 10, 'https://mrarif.me/secureswipesolutions/?p=396', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(397, 1, '2025-11-16 09:07:00', '2025-11-16 09:07:00', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"#\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:07:00', '2025-11-16 09:07:00', '', 10, 'https://mrarif.me/secureswipesolutions/?p=397', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(399, 1, '2025-11-16 09:07:31', '2025-11-16 09:07:31', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"#\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:07:31', '2025-11-16 09:07:31', '', 10, 'https://mrarif.me/secureswipesolutions/?p=399', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(400, 1, '2025-11-16 09:07:31', '2025-11-16 09:07:31', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"#\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:07:31', '2025-11-16 09:07:31', '', 10, 'https://mrarif.me/secureswipesolutions/?p=400', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(401, 1, '2025-11-16 09:07:31', '2025-11-16 09:07:31', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:07:31', '2025-11-16 09:07:31', '', 10, 'https://mrarif.me/secureswipesolutions/?p=401', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(402, 1, '2025-11-16 09:07:50', '2025-11-16 09:07:50', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:07:50', '2025-11-16 09:07:50', '', 10, 'https://mrarif.me/secureswipesolutions/?p=402', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(403, 1, '2025-11-16 09:07:50', '2025-11-16 09:07:50', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:07:50', '2025-11-16 09:07:50', '', 10, 'https://mrarif.me/secureswipesolutions/?p=403', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(404, 1, '2025-11-16 09:07:50', '2025-11-16 09:07:50', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:07:50', '2025-11-16 09:07:50', '', 10, 'https://mrarif.me/secureswipesolutions/?p=404', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(405, 1, '2025-11-16 09:14:10', '2025-11-16 09:14:10', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:14:10', '2025-11-16 09:14:10', '', 10, 'https://mrarif.me/secureswipesolutions/?p=405', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(406, 1, '2025-11-16 09:14:11', '2025-11-16 09:14:11', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:14:11', '2025-11-16 09:14:11', '', 10, 'https://mrarif.me/secureswipesolutions/?p=406', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(407, 1, '2025-11-16 09:14:11', '2025-11-16 09:14:11', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:14:11', '2025-11-16 09:14:11', '', 10, 'https://mrarif.me/secureswipesolutions/?p=407', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(411, 1, '2025-11-16 09:24:45', '2025-11-16 09:24:45', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:24:45', '2025-11-16 09:24:45', '', 10, 'https://mrarif.me/secureswipesolutions/?p=411', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(409, 1, '2025-11-16 09:24:45', '2025-11-16 09:24:45', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:24:45', '2025-11-16 09:24:45', '', 10, 'https://mrarif.me/secureswipesolutions/?p=409', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(410, 1, '2025-11-16 09:24:45', '2025-11-16 09:24:45', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:24:45', '2025-11-16 09:24:45', '', 10, 'https://mrarif.me/secureswipesolutions/?p=410', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(412, 1, '2025-11-16 09:29:21', '2025-11-16 09:29:21', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:29:21', '2025-11-16 09:29:21', '', 10, 'https://mrarif.me/secureswipesolutions/?p=412', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(413, 1, '2025-11-16 09:29:21', '2025-11-16 09:29:21', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:29:21', '2025-11-16 09:29:21', '', 10, 'https://mrarif.me/secureswipesolutions/?p=413', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(414, 1, '2025-11-16 09:29:21', '2025-11-16 09:29:21', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-16 09:29:21', '2025-11-16 09:29:21', '', 10, 'https://mrarif.me/secureswipesolutions/?p=414', 0, 'revision', '', 0),
(415, 1, '2025-11-16 09:32:37', '2025-11-16 09:32:37', '', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2025-11-16 09:32:37', '2025-11-16 09:32:37', '', 29, 'https://mrarif.me/secureswipesolutions/?p=415', 0, 'revision', '', 0),
(416, 1, '2025-11-16 09:32:38', '2025-11-16 09:32:38', '', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2025-11-16 09:32:38', '2025-11-16 09:32:38', '', 29, 'https://mrarif.me/secureswipesolutions/?p=416', 0, 'revision', '', 0),
(574, 1, '2025-11-22 09:02:25', '2025-11-22 09:02:25', '<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2025-11-22 09:02:25', '2025-11-22 09:02:25', '', 29, 'https://mrarif.me/secureswipesolutions/?p=574', 0, 'revision', '', 0),
(417, 1, '2025-11-16 09:32:38', '2025-11-16 09:32:38', '<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2025-11-16 09:32:38', '2025-11-16 09:32:38', '', 29, 'https://mrarif.me/secureswipesolutions/?p=417', 0, 'revision', '', 0),
(419, 1, '2025-11-16 09:35:29', '2025-11-16 09:35:29', '', 'choose', '', 'inherit', 'open', 'closed', '', 'choose', '', '', '2025-11-16 09:35:29', '2025-11-16 09:35:29', '', 27, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/choose.jpg', 0, 'attachment', 'image/jpeg', 0),
(420, 1, '2025-11-16 09:36:57', '2025-11-16 09:36:57', '', 'Why Choose Us', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2025-11-16 09:36:57', '2025-11-16 09:36:57', '', 27, 'https://mrarif.me/secureswipesolutions/?p=420', 0, 'revision', '', 0),
(421, 1, '2025-11-16 09:36:57', '2025-11-16 09:36:57', '', 'Why Choose Us', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2025-11-16 09:36:57', '2025-11-16 09:36:57', '', 27, 'https://mrarif.me/secureswipesolutions/?p=421', 0, 'revision', '', 0),
(422, 1, '2025-11-16 09:36:57', '2025-11-16 09:36:57', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/choose.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/choose.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/choose-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/choose-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				<p>Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.</p><p>When you partner with us, you’re not just getting a machine. You’re gaining a responsive, service-driven team that values your growth.</p>', 'Why Choose Us', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2025-11-16 09:36:57', '2025-11-16 09:36:57', '', 27, 'https://mrarif.me/secureswipesolutions/?p=422', 0, 'revision', '', 0),
(423, 1, '2025-11-16 09:51:57', '2025-11-16 09:51:57', '', 'New Project (27)', '', 'inherit', 'open', 'closed', '', 'new-project-27', '', '', '2025-11-16 09:51:57', '2025-11-16 09:51:57', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg', 0, 'attachment', 'image/jpeg', 0),
(424, 1, '2025-11-16 09:53:32', '2025-11-16 09:53:32', '', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-16 09:53:32', '2025-11-16 09:53:32', '', 25, 'https://mrarif.me/secureswipesolutions/?p=424', 0, 'revision', '', 0),
(425, 1, '2025-11-16 09:53:32', '2025-11-16 09:53:32', '', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-16 09:53:32', '2025-11-16 09:53:32', '', 25, 'https://mrarif.me/secureswipesolutions/?p=425', 0, 'revision', '', 0),
(426, 1, '2025-11-16 09:53:32', '2025-11-16 09:53:32', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-16 09:53:32', '2025-11-16 09:53:32', '', 25, 'https://mrarif.me/secureswipesolutions/?p=426', 0, 'revision', '', 0),
(428, 1, '2025-11-16 10:00:04', '2025-11-16 10:00:04', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-16 10:00:04', '2025-11-16 10:00:04', '', 25, 'https://mrarif.me/secureswipesolutions/?p=428', 0, 'revision', '', 0),
(429, 1, '2025-11-16 10:00:05', '2025-11-16 10:00:05', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-16 10:00:05', '2025-11-16 10:00:05', '', 25, 'https://mrarif.me/secureswipesolutions/?p=429', 0, 'revision', '', 0),
(430, 1, '2025-11-16 10:00:05', '2025-11-16 10:00:05', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-16 10:00:05', '2025-11-16 10:00:05', '', 25, 'https://mrarif.me/secureswipesolutions/?p=430', 0, 'revision', '', 0),
(431, 1, '2025-11-16 10:03:21', '2025-11-16 10:03:21', '', 'New Project (28)', '', 'inherit', 'open', 'closed', '', 'new-project-28', '', '', '2025-11-16 10:03:21', '2025-11-16 10:03:21', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-28.jpg', 0, 'attachment', 'image/jpeg', 0),
(432, 1, '2025-11-16 10:03:50', '2025-11-16 10:03:50', '', 'New Project (29)', '', 'inherit', 'open', 'closed', '', 'new-project-29', '', '', '2025-11-16 10:03:50', '2025-11-16 10:03:50', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg', 0, 'attachment', 'image/jpeg', 0),
(433, 1, '2025-11-16 10:04:27', '2025-11-16 10:04:27', '', 'New Project (30)', '', 'inherit', 'open', 'closed', '', 'new-project-30', '', '', '2025-11-16 10:04:27', '2025-11-16 10:04:27', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-30.jpg', 0, 'attachment', 'image/jpeg', 0),
(434, 1, '2025-11-16 10:04:33', '2025-11-16 10:04:33', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-16 10:04:33', '2025-11-16 10:04:33', '', 25, 'https://mrarif.me/secureswipesolutions/?p=434', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(435, 1, '2025-11-16 10:04:33', '2025-11-16 10:04:33', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-16 10:04:33', '2025-11-16 10:04:33', '', 25, 'https://mrarif.me/secureswipesolutions/?p=435', 0, 'revision', '', 0),
(436, 1, '2025-11-16 10:04:34', '2025-11-16 10:04:34', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-28.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-28-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-28-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-30.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-30-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-30-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-16 10:04:34', '2025-11-16 10:04:34', '', 25, 'https://mrarif.me/secureswipesolutions/?p=436', 0, 'revision', '', 0),
(437, 1, '2025-11-17 12:06:52', '2025-11-17 12:06:52', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 12:06:52', '2025-11-17 12:06:52', '', 10, 'https://mrarif.me/secureswipesolutions/?p=437', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(438, 1, '2025-11-17 12:06:52', '2025-11-17 12:06:52', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n											<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n							<h1>Secure Swipe Solutions LLC</h1>		Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 12:06:52', '2025-11-17 12:06:52', '', 10, 'https://mrarif.me/secureswipesolutions/?p=438', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(518, 1, '2025-11-22 07:20:46', '2025-11-22 07:20:46', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:20:46', '2025-11-22 07:20:46', '', 10, 'https://mrarif.me/secureswipesolutions/?p=518', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(439, 1, '2025-11-17 12:06:53', '2025-11-17 12:06:53', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 12:06:53', '2025-11-17 12:06:53', '', 10, 'https://mrarif.me/secureswipesolutions/?p=439', 0, 'revision', '', 0),
(440, 1, '2025-11-17 12:13:33', '2025-11-17 12:13:33', '', 'banner (4)', '', 'inherit', 'open', 'closed', '', 'banner-4', '', '', '2025-11-17 12:13:33', '2025-11-17 12:13:33', '', 0, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/banner-4.mp4', 0, 'attachment', 'video/mp4', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(441, 1, '2025-11-17 12:13:58', '2025-11-17 12:13:58', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 12:13:58', '2025-11-17 12:13:58', '', 10, 'https://mrarif.me/secureswipesolutions/?p=441', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(442, 1, '2025-11-17 12:13:58', '2025-11-17 12:13:58', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 12:13:58', '2025-11-17 12:13:58', '', 10, 'https://mrarif.me/secureswipesolutions/?p=442', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(443, 1, '2025-11-17 12:13:58', '2025-11-17 12:13:58', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 12:13:58', '2025-11-17 12:13:58', '', 10, 'https://mrarif.me/secureswipesolutions/?p=443', 0, 'revision', '', 0),
(444, 1, '2025-11-17 12:26:32', '2025-11-17 12:26:32', '', '14392996 (2) (1)', '', 'inherit', 'open', 'closed', '', '14392996-2-1', '', '', '2025-11-17 12:26:32', '2025-11-17 12:26:32', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/14392996-2-1.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(445, 1, '2025-11-17 12:26:43', '2025-11-17 12:26:43', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 12:26:43', '2025-11-17 12:26:43', '', 10, 'https://mrarif.me/secureswipesolutions/?p=445', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(446, 1, '2025-11-17 12:26:43', '2025-11-17 12:26:43', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 12:26:43', '2025-11-17 12:26:43', '', 10, 'https://mrarif.me/secureswipesolutions/?p=446', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(447, 1, '2025-11-17 12:26:44', '2025-11-17 12:26:44', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 12:26:44', '2025-11-17 12:26:44', '', 10, 'https://mrarif.me/secureswipesolutions/?p=447', 0, 'revision', '', 0),
(448, 1, '2025-11-17 12:34:13', '2025-11-17 12:34:13', '', '69644 (1)', '', 'inherit', 'open', 'closed', '', '69644-1', '', '', '2025-11-17 12:34:13', '2025-11-17 12:34:13', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/69644-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(449, 1, '2025-11-17 12:34:48', '2025-11-17 12:34:48', '', '11665759 (1)', '', 'inherit', 'open', 'closed', '', '11665759-1', '', '', '2025-11-17 12:34:48', '2025-11-17 12:34:48', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(450, 1, '2025-11-17 12:35:01', '2025-11-17 12:35:01', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-28.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-28-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-28-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-30.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-30-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-30-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-17 12:35:01', '2025-11-17 12:35:01', '', 25, 'https://mrarif.me/secureswipesolutions/?p=450', 0, 'revision', '', 0),
(451, 1, '2025-11-17 12:35:01', '2025-11-17 12:35:01', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-28.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-28.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-28-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-28-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-30.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-30.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-30-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-30-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-17 12:35:01', '2025-11-17 12:35:01', '', 25, 'https://mrarif.me/secureswipesolutions/?p=451', 0, 'revision', '', 0),
(452, 1, '2025-11-17 12:35:01', '2025-11-17 12:35:01', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-17 12:35:01', '2025-11-17 12:35:01', '', 25, 'https://mrarif.me/secureswipesolutions/?p=452', 0, 'revision', '', 0),
(453, 1, '2025-11-17 12:36:19', '2025-11-17 12:36:19', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-17 12:36:19', '2025-11-17 12:36:19', '', 25, 'https://mrarif.me/secureswipesolutions/?p=453', 0, 'revision', '', 0),
(454, 1, '2025-11-17 12:36:19', '2025-11-17 12:36:19', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-17 12:36:19', '2025-11-17 12:36:19', '', 25, 'https://mrarif.me/secureswipesolutions/?p=454', 0, 'revision', '', 0),
(455, 1, '2025-11-17 12:36:19', '2025-11-17 12:36:19', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-17 12:36:19', '2025-11-17 12:36:19', '', 25, 'https://mrarif.me/secureswipesolutions/?p=455', 0, 'revision', '', 0),
(456, 1, '2025-11-17 12:37:04', '2025-11-17 12:37:04', '{\n    \"astra-settings[headings-font-weight]\": {\n        \"value\": \"600\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-17 12:37:04\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '16394bba-892e-4036-9726-1a98d128a934', '', '', '2025-11-17 12:37:04', '2025-11-17 12:37:04', '', 0, 'https://mrarif.me/secureswipesolutions/16394bba-892e-4036-9726-1a98d128a934/', 0, 'customize_changeset', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(457, 1, '2025-11-17 12:37:15', '2025-11-17 12:37:15', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 12:37:15', '2025-11-17 12:37:15', '', 10, 'https://mrarif.me/secureswipesolutions/?p=457', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(458, 1, '2025-11-17 12:37:15', '2025-11-17 12:37:15', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 12:37:15', '2025-11-17 12:37:15', '', 10, 'https://mrarif.me/secureswipesolutions/?p=458', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(459, 1, '2025-11-17 12:37:15', '2025-11-17 12:37:15', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 12:37:15', '2025-11-17 12:37:15', '', 10, 'https://mrarif.me/secureswipesolutions/?p=459', 0, 'revision', '', 0),
(460, 1, '2025-11-17 12:37:42', '2025-11-17 12:37:42', '{\n    \"astra-settings[font-size-h2]\": {\n        \"value\": {\n            \"desktop\": 43,\n            \"tablet\": 25,\n            \"mobile\": 25,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-17 12:37:42\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '83f5f41d-5033-4121-a05d-a6cdd7dfd130', '', '', '2025-11-17 12:37:42', '2025-11-17 12:37:42', '', 0, 'https://mrarif.me/secureswipesolutions/83f5f41d-5033-4121-a05d-a6cdd7dfd130/', 0, 'customize_changeset', '', 0),
(466, 1, '2025-11-17 12:46:16', '2025-11-17 12:46:16', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.													<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-17 12:46:16', '2025-11-17 12:46:16', '', 25, 'https://mrarif.me/secureswipesolutions/?p=466', 0, 'revision', '', 0),
(462, 1, '2025-11-17 12:45:00', '2025-11-17 12:45:00', '', 'gratis-png-visa-thumbnail', '', 'inherit', 'open', 'closed', '', 'gratis-png-visa-thumbnail', '', '', '2025-11-17 12:45:00', '2025-11-17 12:45:00', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/gratis-png-visa-thumbnail.png', 0, 'attachment', 'image/png', 0),
(463, 1, '2025-11-17 12:45:44', '2025-11-17 12:45:44', '', 'images', '', 'inherit', 'open', 'closed', '', 'images', '', '', '2025-11-17 12:45:44', '2025-11-17 12:45:44', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png', 0, 'attachment', 'image/png', 0),
(464, 1, '2025-11-17 12:46:15', '2025-11-17 12:46:15', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-17 12:46:15', '2025-11-17 12:46:15', '', 25, 'https://mrarif.me/secureswipesolutions/?p=464', 0, 'revision', '', 0),
(465, 1, '2025-11-17 12:46:16', '2025-11-17 12:46:16', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-17 12:46:16', '2025-11-17 12:46:16', '', 25, 'https://mrarif.me/secureswipesolutions/?p=465', 0, 'revision', '', 0),
(467, 1, '2025-11-17 12:48:23', '2025-11-17 12:48:23', '', 'MicrosoftTeams-image (1)', '', 'inherit', 'open', 'closed', '', 'microsoftteams-image-1', '', '', '2025-11-17 12:48:23', '2025-11-17 12:48:23', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/MicrosoftTeams-image-1.png', 0, 'attachment', 'image/png', 0),
(468, 1, '2025-11-17 12:49:35', '2025-11-17 12:49:35', '', 'download (2)', '', 'inherit', 'open', 'closed', '', 'download-2', '', '', '2025-11-17 12:49:35', '2025-11-17 12:49:35', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png', 0, 'attachment', 'image/png', 0),
(469, 1, '2025-11-17 12:49:55', '2025-11-17 12:49:55', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.													<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-17 12:49:55', '2025-11-17 12:49:55', '', 25, 'https://mrarif.me/secureswipesolutions/?p=469', 0, 'revision', '', 0),
(470, 1, '2025-11-17 12:49:55', '2025-11-17 12:49:55', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.													<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-17 12:49:55', '2025-11-17 12:49:55', '', 25, 'https://mrarif.me/secureswipesolutions/?p=470', 0, 'revision', '', 0),
(471, 1, '2025-11-17 12:49:56', '2025-11-17 12:49:56', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.													<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-17 12:49:56', '2025-11-17 12:49:56', '', 25, 'https://mrarif.me/secureswipesolutions/?p=471', 0, 'revision', '', 0),
(472, 1, '2025-11-17 12:51:46', '2025-11-17 12:51:46', '', '620670b9d7b91b0004122617-1694098704', '', 'inherit', 'open', 'closed', '', '620670b9d7b91b0004122617-1694098704', '', '', '2025-11-17 12:51:46', '2025-11-17 12:51:46', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(473, 1, '2025-11-17 12:52:38', '2025-11-17 12:52:38', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.													<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-17 12:52:38', '2025-11-17 12:52:38', '', 25, 'https://mrarif.me/secureswipesolutions/?p=473', 0, 'revision', '', 0),
(474, 1, '2025-11-17 12:52:39', '2025-11-17 12:52:39', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.													<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-17 12:52:39', '2025-11-17 12:52:39', '', 25, 'https://mrarif.me/secureswipesolutions/?p=474', 0, 'revision', '', 0),
(475, 1, '2025-11-17 12:52:39', '2025-11-17 12:52:39', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.													<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-17 12:52:39', '2025-11-17 12:52:39', '', 25, 'https://mrarif.me/secureswipesolutions/?p=475', 0, 'revision', '', 0),
(476, 1, '2025-11-17 12:58:50', '2025-11-17 12:58:50', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/choose.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/choose.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/choose-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/choose-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				<p>Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.</p><p>When you partner with us, you’re not just getting a machine. You’re gaining a responsive, service-driven team that values your growth.</p>', 'Why Choose Us', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2025-11-17 12:58:50', '2025-11-17 12:58:50', '', 27, 'https://mrarif.me/secureswipesolutions/?p=476', 0, 'revision', '', 0),
(477, 1, '2025-11-17 12:58:50', '2025-11-17 12:58:50', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/choose.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/choose.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/choose-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/choose-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				<p>Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.</p><p>When you partner with us, you’re not just getting a machine. You’re gaining a responsive, service-driven team that values your growth.</p>', 'Why Choose Us', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2025-11-17 12:58:50', '2025-11-17 12:58:50', '', 27, 'https://mrarif.me/secureswipesolutions/?p=477', 0, 'revision', '', 0),
(531, 1, '2025-11-22 07:35:06', '2025-11-22 07:35:06', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				<p>Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.</p><p>When you partner with us, you’re not just getting a machine. You’re gaining a responsive, service-driven team that values your growth.</p>', 'Why Choose Us', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2025-11-22 07:35:06', '2025-11-22 07:35:06', '', 27, 'https://mrarif.me/secureswipesolutions/?p=531', 0, 'revision', '', 0),
(478, 1, '2025-11-17 12:58:51', '2025-11-17 12:58:51', '<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/14392996-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/14392996-2-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/14392996-2-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/14392996-2-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/14392996-2-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				<p>Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.</p><p>When you partner with us, you’re not just getting a machine. You’re gaining a responsive, service-driven team that values your growth.</p>', 'Why Choose Us', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2025-11-17 12:58:51', '2025-11-17 12:58:51', '', 27, 'https://mrarif.me/secureswipesolutions/?p=478', 0, 'revision', '', 0),
(479, 1, '2025-11-17 13:03:41', '2025-11-17 13:03:41', '', 'WhatsApp Image 2025-11-17 at 19.02.48', '', 'inherit', 'open', 'closed', '', 'whatsapp-image-2025-11-17-at-19-02-48', '', '', '2025-11-17 13:03:41', '2025-11-17 13:03:41', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg', 0, 'attachment', 'image/jpeg', 0),
(480, 1, '2025-11-17 13:03:49', '2025-11-17 13:03:49', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.													<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-17 13:03:49', '2025-11-17 13:03:49', '', 25, 'https://mrarif.me/secureswipesolutions/?p=480', 0, 'revision', '', 0),
(481, 1, '2025-11-17 13:03:49', '2025-11-17 13:03:49', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.													<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-17 13:03:49', '2025-11-17 13:03:49', '', 25, 'https://mrarif.me/secureswipesolutions/?p=481', 0, 'revision', '', 0),
(482, 1, '2025-11-17 13:03:50', '2025-11-17 13:03:50', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.													<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-17 13:03:50', '2025-11-17 13:03:50', '', 25, 'https://mrarif.me/secureswipesolutions/?p=482', 0, 'revision', '', 0),
(483, 1, '2025-11-17 13:11:00', '2025-11-17 13:11:00', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-17 13:11:00', '2025-11-17 13:11:00', '', 44, 'https://mrarif.me/secureswipesolutions/?p=483', 0, 'revision', '', 0),
(484, 1, '2025-11-17 13:11:26', '2025-11-17 13:11:26', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-17 13:11:26', '2025-11-17 13:11:26', '', 44, 'https://mrarif.me/secureswipesolutions/?p=484', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(485, 1, '2025-11-17 13:12:53', '2025-11-17 13:12:53', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 13:12:53', '2025-11-17 13:12:53', '', 10, 'https://mrarif.me/secureswipesolutions/?p=485', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(486, 1, '2025-11-17 13:12:53', '2025-11-17 13:12:53', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 13:12:53', '2025-11-17 13:12:53', '', 10, 'https://mrarif.me/secureswipesolutions/?p=486', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(487, 1, '2025-11-17 13:12:54', '2025-11-17 13:12:54', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 13:12:54', '2025-11-17 13:12:54', '', 10, 'https://mrarif.me/secureswipesolutions/?p=487', 0, 'revision', '', 0),
(488, 1, '2025-11-17 13:19:25', '2025-11-17 13:19:25', '<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2025-11-17 13:19:25', '2025-11-17 13:19:25', '', 29, 'https://mrarif.me/secureswipesolutions/?p=488', 0, 'revision', '', 0),
(489, 1, '2025-11-17 13:19:25', '2025-11-17 13:19:25', '<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2025-11-17 13:19:25', '2025-11-17 13:19:25', '', 29, 'https://mrarif.me/secureswipesolutions/?p=489', 0, 'revision', '', 0),
(490, 1, '2025-11-17 13:19:26', '2025-11-17 13:19:26', '<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2025-11-17 13:19:26', '2025-11-17 13:19:26', '', 29, 'https://mrarif.me/secureswipesolutions/?p=490', 0, 'revision', '', 0),
(491, 1, '2025-11-17 13:19:35', '2025-11-17 13:19:35', '<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2025-11-17 13:19:35', '2025-11-17 13:19:35', '', 29, 'https://mrarif.me/secureswipesolutions/?p=491', 0, 'revision', '', 0),
(492, 1, '2025-11-17 13:19:36', '2025-11-17 13:19:36', '<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2025-11-17 13:19:36', '2025-11-17 13:19:36', '', 29, 'https://mrarif.me/secureswipesolutions/?p=492', 0, 'revision', '', 0),
(493, 1, '2025-11-17 13:19:36', '2025-11-17 13:19:36', '<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2025-11-17 13:19:36', '2025-11-17 13:19:36', '', 29, 'https://mrarif.me/secureswipesolutions/?p=493', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(494, 1, '2025-11-17 13:19:51', '2025-11-17 13:19:51', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 13:19:51', '2025-11-17 13:19:51', '', 10, 'https://mrarif.me/secureswipesolutions/?p=494', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(495, 1, '2025-11-17 13:19:51', '2025-11-17 13:19:51', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 13:19:51', '2025-11-17 13:19:51', '', 10, 'https://mrarif.me/secureswipesolutions/?p=495', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(496, 1, '2025-11-17 13:19:52', '2025-11-17 13:19:52', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 13:19:52', '2025-11-17 13:19:52', '', 10, 'https://mrarif.me/secureswipesolutions/?p=496', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(497, 1, '2025-11-17 13:27:04', '2025-11-17 13:27:04', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 13:27:04', '2025-11-17 13:27:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=497', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(498, 1, '2025-11-17 13:27:04', '2025-11-17 13:27:04', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 13:27:04', '2025-11-17 13:27:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=498', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(499, 1, '2025-11-17 13:27:05', '2025-11-17 13:27:05', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 13:27:05', '2025-11-17 13:27:05', '', 10, 'https://mrarif.me/secureswipesolutions/?p=499', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(500, 1, '2025-11-17 13:32:22', '2025-11-17 13:32:22', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 13:32:22', '2025-11-17 13:32:22', '', 10, 'https://mrarif.me/secureswipesolutions/?p=500', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(501, 1, '2025-11-17 13:32:22', '2025-11-17 13:32:22', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 13:32:22', '2025-11-17 13:32:22', '', 10, 'https://mrarif.me/secureswipesolutions/?p=501', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(502, 1, '2025-11-17 13:32:23', '2025-11-17 13:32:23', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 13:32:23', '2025-11-17 13:32:23', '', 10, 'https://mrarif.me/secureswipesolutions/?p=502', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(503, 1, '2025-11-17 13:33:34', '2025-11-17 13:33:34', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 13:33:34', '2025-11-17 13:33:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=503', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(504, 1, '2025-11-17 13:33:34', '2025-11-17 13:33:34', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 13:33:34', '2025-11-17 13:33:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=504', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(505, 1, '2025-11-17 13:33:35', '2025-11-17 13:33:35', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 13:33:35', '2025-11-17 13:33:35', '', 10, 'https://mrarif.me/secureswipesolutions/?p=505', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(506, 1, '2025-11-17 13:34:44', '2025-11-17 13:34:44', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 13:34:44', '2025-11-17 13:34:44', '', 10, 'https://mrarif.me/secureswipesolutions/?p=506', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(507, 1, '2025-11-17 13:34:44', '2025-11-17 13:34:44', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 13:34:44', '2025-11-17 13:34:44', '', 10, 'https://mrarif.me/secureswipesolutions/?p=507', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(508, 1, '2025-11-17 13:34:45', '2025-11-17 13:34:45', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-17 13:34:45', '2025-11-17 13:34:45', '', 10, 'https://mrarif.me/secureswipesolutions/?p=508', 0, 'revision', '', 0),
(509, 1, '2025-11-22 06:57:40', '2025-11-22 06:57:40', '', '0 Atm Cash Withdrawal 1920X1010', '', 'inherit', 'open', 'closed', '', '0-atm-cash-withdrawal-1920x1010', '', '', '2025-11-22 06:57:40', '2025-11-22 06:57:40', '', 0, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/0-Atm-Cash-Withdrawal-1920X1010.mp4', 0, 'attachment', 'video/mp4', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(510, 1, '2025-11-22 06:58:31', '2025-11-22 06:58:31', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 06:58:31', '2025-11-22 06:58:31', '', 10, 'https://mrarif.me/secureswipesolutions/?p=510', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(511, 1, '2025-11-22 06:58:31', '2025-11-22 06:58:31', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 06:58:31', '2025-11-22 06:58:31', '', 10, 'https://mrarif.me/secureswipesolutions/?p=511', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(512, 1, '2025-11-22 06:58:32', '2025-11-22 06:58:32', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 06:58:32', '2025-11-22 06:58:32', '', 10, 'https://mrarif.me/secureswipesolutions/?p=512', 0, 'revision', '', 0),
(513, 1, '2025-11-22 07:11:00', '2025-11-22 07:11:00', '', 'Design_Full_Logo__2_-removebg-preview', '', 'inherit', 'open', 'closed', '', 'design_full_logo__2_-removebg-preview', '', '', '2025-11-22 07:11:00', '2025-11-22 07:11:00', '', 44, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design_Full_Logo__2_-removebg-preview.png', 0, 'attachment', 'image/png', 0),
(514, 1, '2025-11-22 07:11:21', '2025-11-22 07:11:21', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"78\" height=\"62\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Design-Full-Logo.avif\" alt=\"\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-22 07:11:21', '2025-11-22 07:11:21', '', 44, 'https://mrarif.me/secureswipesolutions/?p=514', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(519, 1, '2025-11-22 07:23:58', '2025-11-22 07:23:58', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:23:58', '2025-11-22 07:23:58', '', 10, 'https://mrarif.me/secureswipesolutions/?p=519', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(516, 1, '2025-11-22 07:20:45', '2025-11-22 07:20:45', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:20:45', '2025-11-22 07:20:45', '', 10, 'https://mrarif.me/secureswipesolutions/?p=516', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(517, 1, '2025-11-22 07:20:45', '2025-11-22 07:20:45', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:20:45', '2025-11-22 07:20:45', '', 10, 'https://mrarif.me/secureswipesolutions/?p=517', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(520, 1, '2025-11-22 07:23:58', '2025-11-22 07:23:58', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:23:58', '2025-11-22 07:23:58', '', 10, 'https://mrarif.me/secureswipesolutions/?p=520', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(521, 1, '2025-11-22 07:23:59', '2025-11-22 07:23:59', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:23:59', '2025-11-22 07:23:59', '', 10, 'https://mrarif.me/secureswipesolutions/?p=521', 0, 'revision', '', 0),
(522, 1, '2025-11-22 07:27:39', '2025-11-22 07:27:39', '', '10895 (1)', '', 'inherit', 'open', 'closed', '', '10895-1', '', '', '2025-11-22 07:27:39', '2025-11-22 07:27:39', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(523, 1, '2025-11-22 07:27:58', '2025-11-22 07:27:58', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:27:58', '2025-11-22 07:27:58', '', 10, 'https://mrarif.me/secureswipesolutions/?p=523', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(524, 1, '2025-11-22 07:27:58', '2025-11-22 07:27:58', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:27:58', '2025-11-22 07:27:58', '', 10, 'https://mrarif.me/secureswipesolutions/?p=524', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(525, 1, '2025-11-22 07:27:58', '2025-11-22 07:27:58', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:27:58', '2025-11-22 07:27:58', '', 10, 'https://mrarif.me/secureswipesolutions/?p=525', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(526, 1, '2025-11-22 07:28:31', '2025-11-22 07:28:31', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:28:31', '2025-11-22 07:28:31', '', 10, 'https://mrarif.me/secureswipesolutions/?p=526', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(527, 1, '2025-11-22 07:28:32', '2025-11-22 07:28:32', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:28:32', '2025-11-22 07:28:32', '', 10, 'https://mrarif.me/secureswipesolutions/?p=527', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(528, 1, '2025-11-22 07:28:32', '2025-11-22 07:28:32', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:28:32', '2025-11-22 07:28:32', '', 10, 'https://mrarif.me/secureswipesolutions/?p=528', 0, 'revision', '', 0),
(529, 1, '2025-11-22 07:35:05', '2025-11-22 07:35:05', '<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/14392996-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/14392996-2-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/14392996-2-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/14392996-2-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/14392996-2-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				<p>Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.</p><p>When you partner with us, you’re not just getting a machine. You’re gaining a responsive, service-driven team that values your growth.</p>', 'Why Choose Us', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2025-11-22 07:35:05', '2025-11-22 07:35:05', '', 27, 'https://mrarif.me/secureswipesolutions/?p=529', 0, 'revision', '', 0),
(530, 1, '2025-11-22 07:35:05', '2025-11-22 07:35:05', '<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/14392996-2-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/14392996-2-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/14392996-2-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/14392996-2-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/14392996-2-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				<p>Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.</p><p>When you partner with us, you’re not just getting a machine. You’re gaining a responsive, service-driven team that values your growth.</p>', 'Why Choose Us', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2025-11-22 07:35:05', '2025-11-22 07:35:05', '', 27, 'https://mrarif.me/secureswipesolutions/?p=530', 0, 'revision', '', 0),
(534, 1, '2025-11-22 07:41:27', '2025-11-22 07:41:27', '<h5>Quick Link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/services-snapshot/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services Snapshot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Why Choose Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact Us\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n											<a href=\"tel:8182628674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										Call us (818) 262-8674\n											</a>\n									</li>\n								<li>\n											<a href=\"http://mailto;admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Greater%20Los%20Angeles&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Greater Los Angeles\"\n					aria-label=\"Greater Los Angeles\"\n			></iframe>\n				Copyright ©2025 - All Rights Reserved.', 'Elementor Footer #369', '', 'inherit', 'closed', 'closed', '', '369-revision-v1', '', '', '2025-11-22 07:41:27', '2025-11-22 07:41:27', '', 369, 'https://mrarif.me/secureswipesolutions/?p=534', 0, 'revision', '', 0),
(533, 1, '2025-11-22 07:39:28', '2025-11-22 07:39:28', '<h5>Quick Link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/services-snapshot/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services Snapshot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Why Choose Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact Us\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n											<a href=\"tel:8182628674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										Call us (818) 262-8674\n											</a>\n									</li>\n								<li>\n											<a href=\"http://mailto;admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=3400%20Cottage%20Way%2C%20Ste%20G222214%2C%20Sacramento%2C%20CA%2095825&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\"\n					aria-label=\"3400 Cottage Way, Ste G222214, Sacramento, CA 95825\"\n			></iframe>\n				Copyright ©2025 - All Rights Reserved.', 'Elementor Footer #369', '', 'inherit', 'closed', 'closed', '', '369-revision-v1', '', '', '2025-11-22 07:39:28', '2025-11-22 07:39:28', '', 369, 'https://mrarif.me/secureswipesolutions/?p=533', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(535, 1, '2025-11-22 07:43:47', '2025-11-22 07:43:47', '<h5>Quick Link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/services-snapshot/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services Snapshot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Why Choose Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact Us\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n											<a href=\"tel:8182628674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										Call us (818) 262-8674\n											</a>\n									</li>\n								<li>\n											<a href=\"http://mailto;admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Greater%20Los%20Angeles&#038;t=m&#038;z=12&#038;output=embed&#038;iwloc=near\"\n					title=\"Greater Los Angeles\"\n					aria-label=\"Greater Los Angeles\"\n			></iframe>\n				Copyright ©2025 - All Rights Reserved.', 'Elementor Footer #369', '', 'inherit', 'closed', 'closed', '', '369-revision-v1', '', '', '2025-11-22 07:43:47', '2025-11-22 07:43:47', '', 369, 'https://mrarif.me/secureswipesolutions/?p=535', 0, 'revision', '', 0),
(536, 1, '2025-11-22 07:54:37', '2025-11-22 07:54:37', '', 'protected-atm-booth-design', '', 'inherit', 'open', 'closed', '', 'protected-atm-booth-design', '', '', '2025-11-22 07:54:37', '2025-11-22 07:54:37', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/protected-atm-booth-design.jpg', 0, 'attachment', 'image/jpeg', 0),
(537, 1, '2025-11-22 07:55:05', '2025-11-22 07:55:05', '', 'Detailed Image of a modern ATM', 'Detailed Image of a modern ATM', 'inherit', 'open', 'closed', '', 'detailed-image-of-a-modern-atm', '', '', '2025-11-22 07:55:05', '2025-11-22 07:55:05', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/istockphoto-157742051-612x612-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(538, 1, '2025-11-22 07:55:12', '2025-11-22 07:55:12', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:55:12', '2025-11-22 07:55:12', '', 10, 'https://mrarif.me/secureswipesolutions/?p=538', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(539, 1, '2025-11-22 07:55:12', '2025-11-22 07:55:12', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:55:12', '2025-11-22 07:55:12', '', 10, 'https://mrarif.me/secureswipesolutions/?p=539', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(540, 1, '2025-11-22 07:55:12', '2025-11-22 07:55:12', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:55:12', '2025-11-22 07:55:12', '', 10, 'https://mrarif.me/secureswipesolutions/?p=540', 0, 'revision', '', 0),
(541, 1, '2025-11-22 07:59:00', '2025-11-22 07:59:00', '', '9248099 (1)', '', 'inherit', 'open', 'closed', '', '9248099-1', '', '', '2025-11-22 07:59:00', '2025-11-22 07:59:00', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(542, 1, '2025-11-22 07:59:10', '2025-11-22 07:59:10', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:59:10', '2025-11-22 07:59:10', '', 10, 'https://mrarif.me/secureswipesolutions/?p=542', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(543, 1, '2025-11-22 07:59:10', '2025-11-22 07:59:10', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:59:10', '2025-11-22 07:59:10', '', 10, 'https://mrarif.me/secureswipesolutions/?p=543', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(544, 1, '2025-11-22 07:59:11', '2025-11-22 07:59:11', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:59:11', '2025-11-22 07:59:11', '', 10, 'https://mrarif.me/secureswipesolutions/?p=544', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(545, 1, '2025-11-22 07:59:39', '2025-11-22 07:59:39', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:59:39', '2025-11-22 07:59:39', '', 10, 'https://mrarif.me/secureswipesolutions/?p=545', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(546, 1, '2025-11-22 07:59:40', '2025-11-22 07:59:40', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:59:40', '2025-11-22 07:59:40', '', 10, 'https://mrarif.me/secureswipesolutions/?p=546', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(547, 1, '2025-11-22 07:59:40', '2025-11-22 07:59:40', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 07:59:40', '2025-11-22 07:59:40', '', 10, 'https://mrarif.me/secureswipesolutions/?p=547', 0, 'revision', '', 0),
(548, 1, '2025-11-22 08:03:25', '2025-11-22 08:03:25', '', 'WhatsApp Image 2025-11-22 at 14.02.24 (1)', '', 'inherit', 'open', 'closed', '', 'whatsapp-image-2025-11-22-at-14-02-24-1', '', '', '2025-11-22 08:03:25', '2025-11-22 08:03:25', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-22-at-14.02.24-1.jpeg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(549, 1, '2025-11-22 08:03:58', '2025-11-22 08:03:58', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 08:03:58', '2025-11-22 08:03:58', '', 10, 'https://mrarif.me/secureswipesolutions/?p=549', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(550, 1, '2025-11-22 08:03:58', '2025-11-22 08:03:58', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 08:03:58', '2025-11-22 08:03:58', '', 10, 'https://mrarif.me/secureswipesolutions/?p=550', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(551, 1, '2025-11-22 08:03:59', '2025-11-22 08:03:59', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 08:03:59', '2025-11-22 08:03:59', '', 10, 'https://mrarif.me/secureswipesolutions/?p=551', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(552, 1, '2025-11-22 08:10:23', '2025-11-22 08:10:23', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 08:10:23', '2025-11-22 08:10:23', '', 10, 'https://mrarif.me/secureswipesolutions/?p=552', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(553, 1, '2025-11-22 08:10:23', '2025-11-22 08:10:23', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 08:10:23', '2025-11-22 08:10:23', '', 10, 'https://mrarif.me/secureswipesolutions/?p=553', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(554, 1, '2025-11-22 08:10:24', '2025-11-22 08:10:24', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 08:10:24', '2025-11-22 08:10:24', '', 10, 'https://mrarif.me/secureswipesolutions/?p=554', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(555, 1, '2025-11-22 08:10:35', '2025-11-22 08:10:35', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 08:10:35', '2025-11-22 08:10:35', '', 10, 'https://mrarif.me/secureswipesolutions/?p=555', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(556, 1, '2025-11-22 08:10:36', '2025-11-22 08:10:36', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 08:10:36', '2025-11-22 08:10:36', '', 10, 'https://mrarif.me/secureswipesolutions/?p=556', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(557, 1, '2025-11-22 08:10:36', '2025-11-22 08:10:36', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 08:10:36', '2025-11-22 08:10:36', '', 10, 'https://mrarif.me/secureswipesolutions/?p=557', 0, 'revision', '', 0),
(559, 1, '2025-11-22 08:45:36', '2025-11-22 08:45:36', '', 'medical_16481502', '', 'inherit', 'open', 'closed', '', 'medical_16481502', '', '', '2025-11-22 08:45:36', '2025-11-22 08:45:36', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/medical_16481502.svg', 0, 'attachment', 'image/svg+xml', 0),
(560, 1, '2025-11-22 08:45:46', '2025-11-22 08:45:46', '', 'money_2170875', '', 'inherit', 'open', 'closed', '', 'money_2170875', '', '', '2025-11-22 08:45:46', '2025-11-22 08:45:46', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/money_2170875.svg', 0, 'attachment', 'image/svg+xml', 0),
(561, 1, '2025-11-22 08:46:00', '2025-11-22 08:46:00', '', 'dependable_10108269', '', 'inherit', 'open', 'closed', '', 'dependable_10108269', '', '', '2025-11-22 08:46:00', '2025-11-22 08:46:00', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/dependable_10108269.svg', 0, 'attachment', 'image/svg+xml', 0),
(562, 1, '2025-11-22 08:46:15', '2025-11-22 08:46:15', '', 'security_6865385', '', 'inherit', 'open', 'closed', '', 'security_6865385', '', '', '2025-11-22 08:46:15', '2025-11-22 08:46:15', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/security_6865385.svg', 0, 'attachment', 'image/svg+xml', 0),
(563, 1, '2025-11-22 08:47:55', '2025-11-22 08:47:55', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.													<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-22 08:47:55', '2025-11-22 08:47:55', '', 25, 'https://mrarif.me/secureswipesolutions/?p=563', 0, 'revision', '', 0),
(564, 1, '2025-11-22 08:47:55', '2025-11-22 08:47:55', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.													<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-22 08:47:55', '2025-11-22 08:47:55', '', 25, 'https://mrarif.me/secureswipesolutions/?p=564', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(565, 1, '2025-11-22 08:47:56', '2025-11-22 08:47:56', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-22 08:47:56', '2025-11-22 08:47:56', '', 25, 'https://mrarif.me/secureswipesolutions/?p=565', 0, 'revision', '', 0),
(566, 1, '2025-11-22 08:48:06', '2025-11-22 08:48:06', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-22 08:48:06', '2025-11-22 08:48:06', '', 25, 'https://mrarif.me/secureswipesolutions/?p=566', 0, 'revision', '', 0),
(567, 1, '2025-11-22 08:48:06', '2025-11-22 08:48:06', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-22 08:48:06', '2025-11-22 08:48:06', '', 25, 'https://mrarif.me/secureswipesolutions/?p=567', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(568, 1, '2025-11-22 08:48:07', '2025-11-22 08:48:07', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-22 08:48:07', '2025-11-22 08:48:07', '', 25, 'https://mrarif.me/secureswipesolutions/?p=568', 0, 'revision', '', 0),
(569, 1, '2025-11-22 09:01:34', '2025-11-22 09:01:34', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:01:34', '2025-11-22 09:01:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=569', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(570, 1, '2025-11-22 09:01:34', '2025-11-22 09:01:34', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:01:34', '2025-11-22 09:01:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=570', 0, 'revision', '', 0),
(572, 1, '2025-11-22 09:02:24', '2025-11-22 09:02:24', '<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2025-11-22 09:02:24', '2025-11-22 09:02:24', '', 29, 'https://mrarif.me/secureswipesolutions/?p=572', 0, 'revision', '', 0),
(573, 1, '2025-11-22 09:02:25', '2025-11-22 09:02:25', '<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>\n				<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" tabindex=\"-1\" aria-label=\"Address:\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>				</a>\n									<h6>\n						<a href=\"https://maps.google.com/maps?ll=38.6029,-121.383568&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;cid=11117025124105474577\" target=\"_blank\" >\n							Address:						</a>\n					</h6>\n									<p>\n						3400 Cottage Way, Ste G222214, Sacramento, CA 95825					</p>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '29-revision-v1', '', '', '2025-11-22 09:02:25', '2025-11-22 09:02:25', '', 29, 'https://mrarif.me/secureswipesolutions/?p=573', 0, 'revision', '', 0),
(575, 1, '2025-11-22 09:04:46', '2025-11-22 09:04:46', '', 'New Project (40)', '', 'inherit', 'open', 'closed', '', 'new-project-40', '', '', '2025-11-22 09:04:46', '2025-11-22 09:04:46', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-40.jpg', 0, 'attachment', 'image/jpeg', 0),
(576, 1, '2025-11-22 09:05:37', '2025-11-22 09:05:37', '', 'New Project (41)', '', 'inherit', 'open', 'closed', '', 'new-project-41', '', '', '2025-11-22 09:05:37', '2025-11-22 09:05:37', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-41.jpg', 0, 'attachment', 'image/jpeg', 0),
(577, 1, '2025-11-22 09:06:27', '2025-11-22 09:06:27', '', 'New Project (42)', '', 'inherit', 'open', 'closed', '', 'new-project-42', '', '', '2025-11-22 09:06:27', '2025-11-22 09:06:27', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-42.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(578, 1, '2025-11-22 09:06:40', '2025-11-22 09:06:40', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:06:40', '2025-11-22 09:06:40', '', 10, 'https://mrarif.me/secureswipesolutions/?p=578', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(579, 1, '2025-11-22 09:06:40', '2025-11-22 09:06:40', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:06:40', '2025-11-22 09:06:40', '', 10, 'https://mrarif.me/secureswipesolutions/?p=579', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(580, 1, '2025-11-22 09:06:41', '2025-11-22 09:06:41', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:06:41', '2025-11-22 09:06:41', '', 10, 'https://mrarif.me/secureswipesolutions/?p=580', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(581, 1, '2025-11-22 09:07:03', '2025-11-22 09:07:03', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:07:03', '2025-11-22 09:07:03', '', 10, 'https://mrarif.me/secureswipesolutions/?p=581', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(582, 1, '2025-11-22 09:07:03', '2025-11-22 09:07:03', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:07:03', '2025-11-22 09:07:03', '', 10, 'https://mrarif.me/secureswipesolutions/?p=582', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(583, 1, '2025-11-22 09:07:04', '2025-11-22 09:07:04', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:07:04', '2025-11-22 09:07:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=583', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(588, 1, '2025-11-22 09:11:02', '2025-11-22 09:11:02', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:11:02', '2025-11-22 09:11:02', '', 10, 'https://mrarif.me/secureswipesolutions/?p=588', 0, 'revision', '', 0),
(585, 1, '2025-11-22 09:10:50', '2025-11-22 09:10:50', '', '15973605 (1)', '', 'inherit', 'open', 'closed', '', '15973605-1', '', '', '2025-11-22 09:10:50', '2025-11-22 09:10:50', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15973605-1.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(586, 1, '2025-11-22 09:11:02', '2025-11-22 09:11:02', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:11:02', '2025-11-22 09:11:02', '', 10, 'https://mrarif.me/secureswipesolutions/?p=586', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(587, 1, '2025-11-22 09:11:02', '2025-11-22 09:11:02', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:11:02', '2025-11-22 09:11:02', '', 10, 'https://mrarif.me/secureswipesolutions/?p=587', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(589, 1, '2025-11-22 09:14:33', '2025-11-22 09:14:33', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:14:33', '2025-11-22 09:14:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=589', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(590, 1, '2025-11-22 09:14:33', '2025-11-22 09:14:33', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:14:33', '2025-11-22 09:14:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=590', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(591, 1, '2025-11-22 09:14:34', '2025-11-22 09:14:34', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:14:34', '2025-11-22 09:14:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=591', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(592, 1, '2025-11-22 09:14:45', '2025-11-22 09:14:45', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:14:45', '2025-11-22 09:14:45', '', 10, 'https://mrarif.me/secureswipesolutions/?p=592', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(593, 1, '2025-11-22 09:14:45', '2025-11-22 09:14:45', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:14:45', '2025-11-22 09:14:45', '', 10, 'https://mrarif.me/secureswipesolutions/?p=593', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(594, 1, '2025-11-22 09:14:45', '2025-11-22 09:14:45', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:14:45', '2025-11-22 09:14:45', '', 10, 'https://mrarif.me/secureswipesolutions/?p=594', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(595, 1, '2025-11-22 09:17:28', '2025-11-22 09:17:28', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:17:28', '2025-11-22 09:17:28', '', 10, 'https://mrarif.me/secureswipesolutions/?p=595', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(596, 1, '2025-11-22 09:17:28', '2025-11-22 09:17:28', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:17:28', '2025-11-22 09:17:28', '', 10, 'https://mrarif.me/secureswipesolutions/?p=596', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(597, 1, '2025-11-22 09:17:29', '2025-11-22 09:17:29', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-22 09:17:29', '2025-11-22 09:17:29', '', 10, 'https://mrarif.me/secureswipesolutions/?p=597', 0, 'revision', '', 0),
(599, 1, '2025-11-25 06:25:31', '2025-11-25 06:25:31', '', 'logo (3)', '', 'inherit', 'open', 'closed', '', 'logo-3', '', '', '2025-11-25 06:25:31', '2025-11-25 06:25:31', '', 44, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3.png', 0, 'attachment', 'image/png', 0),
(600, 1, '2025-11-25 06:25:50', '2025-11-25 06:25:50', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"350\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3.png 350w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3-300x144.png 300w\" sizes=\"(max-width: 350px) 100vw, 350px\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-25 06:25:50', '2025-11-25 06:25:50', '', 44, 'https://mrarif.me/secureswipesolutions/?p=600', 0, 'revision', '', 0),
(601, 1, '2025-11-25 06:26:06', '2025-11-25 06:26:06', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"350\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3.png 350w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3-300x144.png 300w\" sizes=\"(max-width: 350px) 100vw, 350px\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-25 06:26:06', '2025-11-25 06:26:06', '', 44, 'https://mrarif.me/secureswipesolutions/?p=601', 0, 'revision', '', 0),
(602, 1, '2025-11-25 06:26:39', '2025-11-25 06:26:39', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"350\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3.png 350w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3-300x144.png 300w\" sizes=\"(max-width: 350px) 100vw, 350px\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-25 06:26:39', '2025-11-25 06:26:39', '', 44, 'https://mrarif.me/secureswipesolutions/?p=602', 0, 'revision', '', 0),
(603, 1, '2025-11-25 06:26:59', '2025-11-25 06:26:59', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"350\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3.png 350w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3-300x144.png 300w\" sizes=\"(max-width: 350px) 100vw, 350px\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-25 06:26:59', '2025-11-25 06:26:59', '', 44, 'https://mrarif.me/secureswipesolutions/?p=603', 0, 'revision', '', 0),
(604, 1, '2025-11-25 06:27:57', '2025-11-25 06:27:57', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"350\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3.png 350w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3-300x144.png 300w\" sizes=\"(max-width: 350px) 100vw, 350px\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-25 06:27:57', '2025-11-25 06:27:57', '', 44, 'https://mrarif.me/secureswipesolutions/?p=604', 0, 'revision', '', 0),
(605, 1, '2025-11-25 06:28:52', '2025-11-25 06:28:52', '', 'fav (4)', '', 'inherit', 'open', 'closed', '', 'fav-4', '', '', '2025-11-25 06:28:52', '2025-11-25 06:28:52', '', 0, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/fav-4.png', 0, 'attachment', 'image/png', 0),
(606, 1, '2025-11-25 06:28:57', '2025-11-25 06:28:57', 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/cropped-fav-4.png', 'cropped-fav-4.png', '', 'inherit', 'open', 'closed', '', 'cropped-fav-4-png', '', '', '2025-11-25 06:28:57', '2025-11-25 06:28:57', '', 605, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/cropped-fav-4.png', 0, 'attachment', 'image/png', 0),
(607, 1, '2025-11-25 06:30:09', '2025-11-25 06:30:09', '', 'fav (5)', '', 'inherit', 'open', 'closed', '', 'fav-5', '', '', '2025-11-25 06:30:09', '2025-11-25 06:30:09', '', 0, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/fav-5.png', 0, 'attachment', 'image/png', 0),
(608, 1, '2025-11-25 06:30:14', '2025-11-25 06:30:14', 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/cropped-fav-5.png', 'cropped-fav-5.png', '', 'inherit', 'open', 'closed', '', 'cropped-fav-5-png', '', '', '2025-11-25 06:30:14', '2025-11-25 06:30:14', '', 607, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/cropped-fav-5.png', 0, 'attachment', 'image/png', 0),
(609, 1, '2025-11-25 06:32:04', '2025-11-25 06:32:04', '<h5>Quick Link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/services-snapshot/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services Snapshot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Why Choose Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact Us\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n											<a href=\"tel:8182628674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										Call us (818) 262-8674\n											</a>\n									</li>\n								<li>\n											<a href=\"http://mailto;admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Los%20Angeles&#038;t=m&#038;z=12&#038;output=embed&#038;iwloc=near\"\n					title=\"Los Angeles\"\n					aria-label=\"Los Angeles\"\n			></iframe>\n				Copyright ©2025 - All Rights Reserved.', 'Elementor Footer #369', '', 'inherit', 'closed', 'closed', '', '369-revision-v1', '', '', '2025-11-25 06:32:04', '2025-11-25 06:32:04', '', 369, 'https://mrarif.me/secureswipesolutions/?p=609', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(610, 1, '2025-11-25 06:36:00', '2025-11-25 06:36:00', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 06:36:00', '2025-11-25 06:36:00', '', 10, 'https://mrarif.me/secureswipesolutions/?p=610', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(611, 1, '2025-11-25 06:36:00', '2025-11-25 06:36:00', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\n						No long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>				\n									<h4>\n							All the Value, None of the Work						\n					</h4>\n									<p>\n						We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>				\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 06:36:00', '2025-11-25 06:36:00', '', 10, 'https://mrarif.me/secureswipesolutions/?p=611', 0, 'revision', '', 0),
(613, 1, '2025-11-25 06:43:19', '2025-11-25 06:43:19', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home page', '', 'publish', 'closed', 'closed', '', 'home-page', '', '', '2025-11-25 06:43:19', '2025-11-25 06:43:19', '', 0, 'https://mrarif.me/secureswipesolutions/?elementor_library=home-page', 0, 'elementor_library', '', 0),
(614, 1, '2025-11-25 06:43:19', '2025-11-25 06:43:19', '', 'Home page', '', 'inherit', 'closed', 'closed', '', '613-revision-v1', '', '', '2025-11-25 06:43:19', '2025-11-25 06:43:19', '', 613, 'https://mrarif.me/secureswipesolutions/?p=614', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(615, 1, '2025-11-25 06:43:19', '2025-11-25 06:43:19', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home page', '', 'inherit', 'closed', 'closed', '', '613-revision-v1', '', '', '2025-11-25 06:43:19', '2025-11-25 06:43:19', '', 613, 'https://mrarif.me/secureswipesolutions/?p=615', 0, 'revision', '', 0),
(616, 1, '2025-11-25 06:59:31', '2025-11-25 06:59:31', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 06:59:31', '2025-11-25 06:59:31', '', 10, 'https://mrarif.me/secureswipesolutions/?p=616', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(617, 1, '2025-11-25 06:59:32', '2025-11-25 06:59:32', '<h1>Secure Swipe Solutions LLC</h1>							<ul>\n							<li>\n										Serving Greater Los Angeles &amp; Beyond\n									</li>\n								<li>\n										Free ATM Placement\n									</li>\n								<li>\n										Zero Hassle\n									</li>\n						</ul>\n				Your Key to Cash Convenience! ! We place free ATMs in high-traffic businesses, so you never miss a cash sale.\nWe install and manage modern ATMs in local businesses — at no cost to you								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 06:59:32', '2025-11-25 06:59:32', '', 10, 'https://mrarif.me/secureswipesolutions/?p=617', 0, 'revision', '', 0),
(619, 1, '2025-11-25 07:00:56', '2025-11-25 07:00:56', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and oƯer convenient cash access.\nWe handle the installation, maintenance, cash loading, and support.\nWith zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:00:56', '2025-11-25 07:00:56', '', 10, 'https://mrarif.me/secureswipesolutions/?p=619', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(620, 1, '2025-11-25 07:00:56', '2025-11-25 07:00:56', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and oƯer convenient cash access.\nWe handle the installation, maintenance, cash loading, and support.\nWith zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:00:56', '2025-11-25 07:00:56', '', 10, 'https://mrarif.me/secureswipesolutions/?p=620', 0, 'revision', '', 0),
(621, 1, '2025-11-25 07:00:57', '2025-11-25 07:00:57', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:00:57', '2025-11-25 07:00:57', '', 10, 'https://mrarif.me/secureswipesolutions/?p=621', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(622, 1, '2025-11-25 07:01:25', '2025-11-25 07:01:25', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:01:25', '2025-11-25 07:01:25', '', 10, 'https://mrarif.me/secureswipesolutions/?p=622', 0, 'revision', '', 0),
(623, 1, '2025-11-25 07:01:26', '2025-11-25 07:01:26', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:01:26', '2025-11-25 07:01:26', '', 10, 'https://mrarif.me/secureswipesolutions/?p=623', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(624, 1, '2025-11-25 07:01:26', '2025-11-25 07:01:26', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:01:26', '2025-11-25 07:01:26', '', 10, 'https://mrarif.me/secureswipesolutions/?p=624', 0, 'revision', '', 0),
(625, 1, '2025-11-25 07:02:22', '2025-11-25 07:02:22', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:02:22', '2025-11-25 07:02:22', '', 10, 'https://mrarif.me/secureswipesolutions/?p=625', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(626, 1, '2025-11-25 07:02:22', '2025-11-25 07:02:22', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:02:22', '2025-11-25 07:02:22', '', 10, 'https://mrarif.me/secureswipesolutions/?p=626', 0, 'revision', '', 0),
(627, 1, '2025-11-25 07:02:22', '2025-11-25 07:02:22', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation 						\n					</h4>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:02:22', '2025-11-25 07:02:22', '', 10, 'https://mrarif.me/secureswipesolutions/?p=627', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(628, 1, '2025-11-25 07:03:19', '2025-11-25 07:03:19', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation 						\n					</h4>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:03:19', '2025-11-25 07:03:19', '', 10, 'https://mrarif.me/secureswipesolutions/?p=628', 0, 'revision', '', 0),
(629, 1, '2025-11-25 07:03:19', '2025-11-25 07:03:19', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation 						\n					</h4>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None 						\n					</h4>\n									<p>\n						We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:03:19', '2025-11-25 07:03:19', '', 10, 'https://mrarif.me/secureswipesolutions/?p=629', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(630, 1, '2025-11-25 07:03:19', '2025-11-25 07:03:19', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation 						\n					</h4>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None of the						\n					</h4>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:03:19', '2025-11-25 07:03:19', '', 10, 'https://mrarif.me/secureswipesolutions/?p=630', 0, 'revision', '', 0),
(631, 1, '2025-11-25 07:06:13', '2025-11-25 07:06:13', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation 						\n					</h4>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None of the						\n					</h4>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:06:13', '2025-11-25 07:06:13', '', 10, 'https://mrarif.me/secureswipesolutions/?p=631', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(632, 1, '2025-11-25 07:06:13', '2025-11-25 07:06:13', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h4>\n							Free ATM Installation 						\n					</h4>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h4>\n							All the Value, None of the						\n					</h4>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h4>\n							Business-Friendly Terms						\n					</h4>\n									<p>\nBusiness-Friendly Terms\nNo long-term lock-ins. If a location underperforms, we won’t tie you down.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h4>\n							Perfect Fit for Your Business						\n					</h4>\n									<p>\n						Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:06:13', '2025-11-25 07:06:13', '', 10, 'https://mrarif.me/secureswipesolutions/?p=632', 0, 'revision', '', 0),
(634, 1, '2025-11-25 07:07:30', '2025-11-25 07:07:30', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:07:30', '2025-11-25 07:07:30', '', 10, 'https://mrarif.me/secureswipesolutions/?p=634', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(635, 1, '2025-11-25 07:07:30', '2025-11-25 07:07:30', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:07:30', '2025-11-25 07:07:30', '', 10, 'https://mrarif.me/secureswipesolutions/?p=635', 0, 'revision', '', 0),
(636, 1, '2025-11-25 07:07:30', '2025-11-25 07:07:30', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:07:30', '2025-11-25 07:07:30', '', 10, 'https://mrarif.me/secureswipesolutions/?p=636', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(637, 1, '2025-11-25 07:08:47', '2025-11-25 07:08:47', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:08:47', '2025-11-25 07:08:47', '', 10, 'https://mrarif.me/secureswipesolutions/?p=637', 0, 'revision', '', 0),
(638, 1, '2025-11-25 07:08:47', '2025-11-25 07:08:47', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.								<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:08:47', '2025-11-25 07:08:47', '', 10, 'https://mrarif.me/secureswipesolutions/?p=638', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(640, 1, '2025-11-25 07:10:43', '2025-11-25 07:10:43', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							Local Expertise 						\n					</h3>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized\nservice. \n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:10:43', '2025-11-25 07:10:43', '', 10, 'https://mrarif.me/secureswipesolutions/?p=640', 0, 'revision', '', 0),
(641, 1, '2025-11-25 07:10:43', '2025-11-25 07:10:43', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h3>\n							Local Expertise 						\n					</h3>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized\nservice. \n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:10:43', '2025-11-25 07:10:43', '', 10, 'https://mrarif.me/secureswipesolutions/?p=641', 0, 'revision', '', 0),
(642, 1, '2025-11-25 07:10:43', '2025-11-25 07:10:43', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h5>\n							Local Expertise 						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized\nservice. \n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:10:43', '2025-11-25 07:10:43', '', 10, 'https://mrarif.me/secureswipesolutions/?p=642', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(643, 1, '2025-11-25 07:14:23', '2025-11-25 07:14:23', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h5>\n							Local Expertise 						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized\nservice. \n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:14:23', '2025-11-25 07:14:23', '', 10, 'https://mrarif.me/secureswipesolutions/?p=643', 0, 'revision', '', 0),
(644, 1, '2025-11-25 07:14:23', '2025-11-25 07:14:23', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h5>\n							Local Expertise 						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized\nservice. \n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:14:23', '2025-11-25 07:14:23', '', 10, 'https://mrarif.me/secureswipesolutions/?p=644', 0, 'revision', '', 0),
(645, 1, '2025-11-25 07:14:23', '2025-11-25 07:14:23', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:14:23', '2025-11-25 07:14:23', '', 10, 'https://mrarif.me/secureswipesolutions/?p=645', 0, 'revision', '', 0),
(646, 1, '2025-11-25 07:14:48', '2025-11-25 07:14:48', '', 'expertise_14641472', '', 'inherit', 'open', 'closed', '', 'expertise_14641472', '', '', '2025-11-25 07:14:48', '2025-11-25 07:14:48', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/expertise_14641472.svg', 0, 'attachment', 'image/svg+xml', 0),
(647, 1, '2025-11-25 07:15:00', '2025-11-25 07:15:00', '', 'setting_5250560', '', 'inherit', 'open', 'closed', '', 'setting_5250560', '', '', '2025-11-25 07:15:00', '2025-11-25 07:15:00', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/setting_5250560.svg', 0, 'attachment', 'image/svg+xml', 0),
(648, 1, '2025-11-25 07:15:22', '2025-11-25 07:15:22', '', 'successful_15565605', '', 'inherit', 'open', 'closed', '', 'successful_15565605', '', '', '2025-11-25 07:15:22', '2025-11-25 07:15:22', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/successful_15565605.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(649, 1, '2025-11-25 07:15:33', '2025-11-25 07:15:33', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:15:33', '2025-11-25 07:15:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=649', 0, 'revision', '', 0),
(650, 1, '2025-11-25 07:15:33', '2025-11-25 07:15:33', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:15:33', '2025-11-25 07:15:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=650', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(651, 1, '2025-11-25 07:15:33', '2025-11-25 07:15:33', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:15:33', '2025-11-25 07:15:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=651', 0, 'revision', '', 0),
(652, 1, '2025-11-25 07:26:46', '2025-11-25 07:26:46', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:26:46', '2025-11-25 07:26:46', '', 10, 'https://mrarif.me/secureswipesolutions/?p=652', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(653, 1, '2025-11-25 07:26:46', '2025-11-25 07:26:46', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:26:46', '2025-11-25 07:26:46', '', 10, 'https://mrarif.me/secureswipesolutions/?p=653', 0, 'revision', '', 0),
(654, 1, '2025-11-25 07:26:47', '2025-11-25 07:26:47', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 			<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:26:47', '2025-11-25 07:26:47', '', 10, 'https://mrarif.me/secureswipesolutions/?p=654', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(659, 1, '2025-11-25 07:31:46', '2025-11-25 07:31:46', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"997\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-300x199.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-768x510.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:31:46', '2025-11-25 07:31:46', '', 10, 'https://mrarif.me/secureswipesolutions/?p=659', 0, 'revision', '', 0),
(656, 1, '2025-11-25 07:29:43', '2025-11-25 07:29:43', '', 'clean, modern ATM machines,', '', 'inherit', 'open', 'closed', '', 'clean-modern-atm-machines', '', '', '2025-11-25 07:29:43', '2025-11-25 07:29:43', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg', 0, 'attachment', 'image/jpeg', 0),
(657, 1, '2025-11-25 07:31:45', '2025-11-25 07:31:45', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 			<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:31:45', '2025-11-25 07:31:45', '', 10, 'https://mrarif.me/secureswipesolutions/?p=657', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(658, 1, '2025-11-25 07:31:45', '2025-11-25 07:31:45', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 			<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:31:45', '2025-11-25 07:31:45', '', 10, 'https://mrarif.me/secureswipesolutions/?p=658', 0, 'revision', '', 0),
(660, 1, '2025-11-25 07:32:18', '2025-11-25 07:32:18', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"997\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-300x199.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-768x510.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:32:18', '2025-11-25 07:32:18', '', 10, 'https://mrarif.me/secureswipesolutions/?p=660', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(661, 1, '2025-11-25 07:32:18', '2025-11-25 07:32:18', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"997\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-300x199.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-768x510.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:32:18', '2025-11-25 07:32:18', '', 10, 'https://mrarif.me/secureswipesolutions/?p=661', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(662, 1, '2025-11-25 07:32:18', '2025-11-25 07:32:18', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"997\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-300x199.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-768x510.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:32:18', '2025-11-25 07:32:18', '', 10, 'https://mrarif.me/secureswipesolutions/?p=662', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(663, 1, '2025-11-25 07:32:32', '2025-11-25 07:32:32', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"997\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-300x199.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-768x510.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:32:32', '2025-11-25 07:32:32', '', 10, 'https://mrarif.me/secureswipesolutions/?p=663', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(664, 1, '2025-11-25 07:32:32', '2025-11-25 07:32:32', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"997\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-300x199.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-768x510.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:32:32', '2025-11-25 07:32:32', '', 10, 'https://mrarif.me/secureswipesolutions/?p=664', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(665, 1, '2025-11-25 07:32:33', '2025-11-25 07:32:33', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"997\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-300x199.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-768x510.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:32:33', '2025-11-25 07:32:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=665', 0, 'revision', '', 0),
(666, 1, '2025-11-25 07:40:37', '2025-11-25 07:40:37', '', 'atm', '', 'inherit', 'open', 'closed', '', 'atm', '', '', '2025-11-25 07:40:37', '2025-11-25 07:40:37', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(667, 1, '2025-11-25 07:40:45', '2025-11-25 07:40:45', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"997\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-300x199.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-768x510.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:40:45', '2025-11-25 07:40:45', '', 10, 'https://mrarif.me/secureswipesolutions/?p=667', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(668, 1, '2025-11-25 07:40:45', '2025-11-25 07:40:45', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"997\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-300x199.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-768x510.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:40:45', '2025-11-25 07:40:45', '', 10, 'https://mrarif.me/secureswipesolutions/?p=668', 0, 'revision', '', 0),
(669, 1, '2025-11-25 07:40:46', '2025-11-25 07:40:46', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:40:46', '2025-11-25 07:40:46', '', 10, 'https://mrarif.me/secureswipesolutions/?p=669', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(670, 1, '2025-11-25 07:41:54', '2025-11-25 07:41:54', '', 'atm (1)', '', 'inherit', 'open', 'closed', '', 'atm-1', '', '', '2025-11-25 07:41:54', '2025-11-25 07:41:54', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(671, 1, '2025-11-25 07:42:05', '2025-11-25 07:42:05', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:42:05', '2025-11-25 07:42:05', '', 10, 'https://mrarif.me/secureswipesolutions/?p=671', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(672, 1, '2025-11-25 07:42:05', '2025-11-25 07:42:05', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:42:05', '2025-11-25 07:42:05', '', 10, 'https://mrarif.me/secureswipesolutions/?p=672', 0, 'revision', '', 0),
(673, 1, '2025-11-25 07:42:06', '2025-11-25 07:42:06', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:42:06', '2025-11-25 07:42:06', '', 10, 'https://mrarif.me/secureswipesolutions/?p=673', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(674, 1, '2025-11-25 07:49:34', '2025-11-25 07:49:34', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:49:34', '2025-11-25 07:49:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=674', 0, 'revision', '', 0),
(675, 1, '2025-11-25 07:49:34', '2025-11-25 07:49:34', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:49:34', '2025-11-25 07:49:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=675', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(676, 1, '2025-11-25 07:49:34', '2025-11-25 07:49:34', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:49:34', '2025-11-25 07:49:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=676', 0, 'revision', '', 0),
(677, 1, '2025-11-25 07:52:06', '2025-11-25 07:52:06', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:52:06', '2025-11-25 07:52:06', '', 10, 'https://mrarif.me/secureswipesolutions/?p=677', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(678, 1, '2025-11-25 07:52:07', '2025-11-25 07:52:07', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:52:07', '2025-11-25 07:52:07', '', 10, 'https://mrarif.me/secureswipesolutions/?p=678', 0, 'revision', '', 0),
(679, 1, '2025-11-25 07:52:07', '2025-11-25 07:52:07', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:52:07', '2025-11-25 07:52:07', '', 10, 'https://mrarif.me/secureswipesolutions/?p=679', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(680, 1, '2025-11-25 07:52:45', '2025-11-25 07:52:45', '', 'clean__modern_ATM_machines_-removebg-preview', '', 'inherit', 'open', 'closed', '', 'clean__modern_atm_machines_-removebg-preview', '', '', '2025-11-25 07:52:45', '2025-11-25 07:52:45', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png', 0, 'attachment', 'image/png', 0),
(681, 1, '2025-11-25 07:53:13', '2025-11-25 07:53:13', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:53:13', '2025-11-25 07:53:13', '', 10, 'https://mrarif.me/secureswipesolutions/?p=681', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(682, 1, '2025-11-25 07:53:13', '2025-11-25 07:53:13', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"466\" height=\"693\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines.jpg 466w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean-modern-ATM-machines-202x300.jpg 202w\" sizes=\"(max-width: 466px) 100vw, 466px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:53:13', '2025-11-25 07:53:13', '', 10, 'https://mrarif.me/secureswipesolutions/?p=682', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(683, 1, '2025-11-25 07:53:13', '2025-11-25 07:53:13', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:53:13', '2025-11-25 07:53:13', '', 10, 'https://mrarif.me/secureswipesolutions/?p=683', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(684, 1, '2025-11-25 07:55:19', '2025-11-25 07:55:19', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:55:19', '2025-11-25 07:55:19', '', 10, 'https://mrarif.me/secureswipesolutions/?p=684', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(685, 1, '2025-11-25 07:55:19', '2025-11-25 07:55:19', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:55:19', '2025-11-25 07:55:19', '', 10, 'https://mrarif.me/secureswipesolutions/?p=685', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(686, 1, '2025-11-25 07:55:20', '2025-11-25 07:55:20', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:55:20', '2025-11-25 07:55:20', '', 10, 'https://mrarif.me/secureswipesolutions/?p=686', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(687, 1, '2025-11-25 07:59:41', '2025-11-25 07:59:41', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:59:41', '2025-11-25 07:59:41', '', 10, 'https://mrarif.me/secureswipesolutions/?p=687', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(688, 1, '2025-11-25 07:59:42', '2025-11-25 07:59:42', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:59:42', '2025-11-25 07:59:42', '', 10, 'https://mrarif.me/secureswipesolutions/?p=688', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(703, 1, '2025-11-25 08:08:57', '2025-11-25 08:08:57', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:08:57', '2025-11-25 08:08:57', '', 10, 'https://mrarif.me/secureswipesolutions/?p=703', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(689, 1, '2025-11-25 07:59:42', '2025-11-25 07:59:42', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 07:59:42', '2025-11-25 07:59:42', '', 10, 'https://mrarif.me/secureswipesolutions/?p=689', 0, 'revision', '', 0),
(690, 1, '2025-11-25 08:01:44', '2025-11-25 08:01:44', '', 'Why Choose', '', 'inherit', 'open', 'closed', '', 'why-choose', '', '', '2025-11-25 08:01:44', '2025-11-25 08:01:44', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(691, 1, '2025-11-25 08:01:58', '2025-11-25 08:01:58', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:01:58', '2025-11-25 08:01:58', '', 10, 'https://mrarif.me/secureswipesolutions/?p=691', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(692, 1, '2025-11-25 08:01:58', '2025-11-25 08:01:58', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:01:58', '2025-11-25 08:01:58', '', 10, 'https://mrarif.me/secureswipesolutions/?p=692', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(693, 1, '2025-11-25 08:01:58', '2025-11-25 08:01:58', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:01:58', '2025-11-25 08:01:58', '', 10, 'https://mrarif.me/secureswipesolutions/?p=693', 0, 'revision', '', 0),
(694, 1, '2025-11-25 08:05:40', '2025-11-25 08:05:40', '', 'New Project (75)', '', 'inherit', 'open', 'closed', '', 'new-project-75', '', '', '2025-11-25 08:05:40', '2025-11-25 08:05:40', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-75.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(695, 1, '2025-11-25 08:07:49', '2025-11-25 08:07:49', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:07:49', '2025-11-25 08:07:49', '', 10, 'https://mrarif.me/secureswipesolutions/?p=695', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(696, 1, '2025-11-25 08:07:49', '2025-11-25 08:07:49', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:07:49', '2025-11-25 08:07:49', '', 10, 'https://mrarif.me/secureswipesolutions/?p=696', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(697, 1, '2025-11-25 08:07:50', '2025-11-25 08:07:50', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:07:50', '2025-11-25 08:07:50', '', 10, 'https://mrarif.me/secureswipesolutions/?p=697', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(698, 1, '2025-11-25 08:08:17', '2025-11-25 08:08:17', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:08:17', '2025-11-25 08:08:17', '', 10, 'https://mrarif.me/secureswipesolutions/?p=698', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(699, 1, '2025-11-25 08:08:18', '2025-11-25 08:08:18', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:08:18', '2025-11-25 08:08:18', '', 10, 'https://mrarif.me/secureswipesolutions/?p=699', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(700, 1, '2025-11-25 08:08:18', '2025-11-25 08:08:18', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:08:18', '2025-11-25 08:08:18', '', 10, 'https://mrarif.me/secureswipesolutions/?p=700', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(701, 1, '2025-11-25 08:08:57', '2025-11-25 08:08:57', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:08:57', '2025-11-25 08:08:57', '', 10, 'https://mrarif.me/secureswipesolutions/?p=701', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(702, 1, '2025-11-25 08:08:57', '2025-11-25 08:08:57', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:08:57', '2025-11-25 08:08:57', '', 10, 'https://mrarif.me/secureswipesolutions/?p=702', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(704, 1, '2025-11-25 08:09:36', '2025-11-25 08:09:36', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:09:36', '2025-11-25 08:09:36', '', 10, 'https://mrarif.me/secureswipesolutions/?p=704', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(705, 1, '2025-11-25 08:09:37', '2025-11-25 08:09:37', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:09:37', '2025-11-25 08:09:37', '', 10, 'https://mrarif.me/secureswipesolutions/?p=705', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(706, 1, '2025-11-25 08:09:37', '2025-11-25 08:09:37', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:09:37', '2025-11-25 08:09:37', '', 10, 'https://mrarif.me/secureswipesolutions/?p=706', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(707, 1, '2025-11-25 08:11:28', '2025-11-25 08:11:28', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:11:28', '2025-11-25 08:11:28', '', 10, 'https://mrarif.me/secureswipesolutions/?p=707', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(708, 1, '2025-11-25 08:11:29', '2025-11-25 08:11:29', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:11:29', '2025-11-25 08:11:29', '', 10, 'https://mrarif.me/secureswipesolutions/?p=708', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(709, 1, '2025-11-25 08:11:29', '2025-11-25 08:11:29', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:11:29', '2025-11-25 08:11:29', '', 10, 'https://mrarif.me/secureswipesolutions/?p=709', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(710, 1, '2025-11-25 08:12:08', '2025-11-25 08:12:08', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:12:08', '2025-11-25 08:12:08', '', 10, 'https://mrarif.me/secureswipesolutions/?p=710', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(711, 1, '2025-11-25 08:12:08', '2025-11-25 08:12:08', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:12:08', '2025-11-25 08:12:08', '', 10, 'https://mrarif.me/secureswipesolutions/?p=711', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(712, 1, '2025-11-25 08:12:08', '2025-11-25 08:12:08', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:12:08', '2025-11-25 08:12:08', '', 10, 'https://mrarif.me/secureswipesolutions/?p=712', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(713, 1, '2025-11-25 08:12:35', '2025-11-25 08:12:35', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:12:35', '2025-11-25 08:12:35', '', 10, 'https://mrarif.me/secureswipesolutions/?p=713', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(714, 1, '2025-11-25 08:12:35', '2025-11-25 08:12:35', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:12:35', '2025-11-25 08:12:35', '', 10, 'https://mrarif.me/secureswipesolutions/?p=714', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(715, 1, '2025-11-25 08:12:36', '2025-11-25 08:12:36', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:12:36', '2025-11-25 08:12:36', '', 10, 'https://mrarif.me/secureswipesolutions/?p=715', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(716, 1, '2025-11-25 08:46:27', '2025-11-25 08:46:27', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:46:27', '2025-11-25 08:46:27', '', 10, 'https://mrarif.me/secureswipesolutions/?p=716', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(717, 1, '2025-11-25 08:46:27', '2025-11-25 08:46:27', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:46:27', '2025-11-25 08:46:27', '', 10, 'https://mrarif.me/secureswipesolutions/?p=717', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(718, 1, '2025-11-25 08:46:27', '2025-11-25 08:46:27', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:46:27', '2025-11-25 08:46:27', '', 10, 'https://mrarif.me/secureswipesolutions/?p=718', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(719, 1, '2025-11-25 08:47:09', '2025-11-25 08:47:09', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:47:09', '2025-11-25 08:47:09', '', 10, 'https://mrarif.me/secureswipesolutions/?p=719', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(720, 1, '2025-11-25 08:47:09', '2025-11-25 08:47:09', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties.If a location underperforms, we simply					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:47:09', '2025-11-25 08:47:09', '', 10, 'https://mrarif.me/secureswipesolutions/?p=720', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(721, 1, '2025-11-25 08:47:10', '2025-11-25 08:47:10', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 08:47:10', '2025-11-25 08:47:10', '', 10, 'https://mrarif.me/secureswipesolutions/?p=721', 0, 'revision', '', 0),
(722, 1, '2025-11-25 08:47:54', '2025-11-25 08:47:54', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-25 08:47:54', '2025-11-25 08:47:54', '', 25, 'https://mrarif.me/secureswipesolutions/?p=722', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(723, 1, '2025-11-25 08:47:54', '2025-11-25 08:47:54', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover all setup costs—no rental fees, no installation charges. Just say yes, and we’ll handle the rest.													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-25 08:47:54', '2025-11-25 08:47:54', '', 25, 'https://mrarif.me/secureswipesolutions/?p=723', 0, 'revision', '', 0),
(906, 1, '2025-11-27 11:53:35', '2025-11-27 11:53:35', '<img width=\"1500\" height=\"998\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-768x511.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 11:53:35', '2025-11-27 11:53:35', '', 25, 'https://mrarif.me/secureswipesolutions/?p=906', 0, 'revision', '', 0),
(724, 1, '2025-11-25 08:47:54', '2025-11-25 08:47:54', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-25 08:47:54', '2025-11-25 08:47:54', '', 25, 'https://mrarif.me/secureswipesolutions/?p=724', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(725, 1, '2025-11-25 08:48:31', '2025-11-25 08:48:31', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-25 08:48:31', '2025-11-25 08:48:31', '', 25, 'https://mrarif.me/secureswipesolutions/?p=725', 0, 'revision', '', 0),
(726, 1, '2025-11-25 08:48:31', '2025-11-25 08:48:31', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work</h2>		We place the ATM for free, manage every detail, and retain the surcharge. You enjoy increased foot traffic without lifting a finger.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-25 08:48:31', '2025-11-25 08:48:31', '', 25, 'https://mrarif.me/secureswipesolutions/?p=726', 0, 'revision', '', 0),
(727, 1, '2025-11-25 08:48:31', '2025-11-25 08:48:31', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traƯic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service. \n													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-25 08:48:31', '2025-11-25 08:48:31', '', 25, 'https://mrarif.me/secureswipesolutions/?p=727', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(728, 1, '2025-11-25 08:49:05', '2025-11-25 08:49:05', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traƯic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service. \n													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-25 08:49:05', '2025-11-25 08:49:05', '', 25, 'https://mrarif.me/secureswipesolutions/?p=728', 0, 'revision', '', 0),
(729, 1, '2025-11-25 08:49:05', '2025-11-25 08:49:05', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traƯic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service. \n													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Business-Friendly Terms</h2>		No long-term lock-ins. If a location underperforms, we won’t tie you down.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-25 08:49:05', '2025-11-25 08:49:05', '', 25, 'https://mrarif.me/secureswipesolutions/?p=729', 0, 'revision', '', 0),
(730, 1, '2025-11-25 08:49:05', '2025-11-25 08:49:05', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traƯic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service. \n													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-25 08:49:05', '2025-11-25 08:49:05', '', 25, 'https://mrarif.me/secureswipesolutions/?p=730', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(731, 1, '2025-11-25 08:49:30', '2025-11-25 08:49:30', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traƯic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service. \n													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-25 08:49:30', '2025-11-25 08:49:30', '', 25, 'https://mrarif.me/secureswipesolutions/?p=731', 0, 'revision', '', 0),
(732, 1, '2025-11-25 08:49:30', '2025-11-25 08:49:30', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traƯic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service. \n													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Perfect Fit for Your Business</h2>		Ideal for salons, dispensaries, smoke shops, wellness spas, and retail stores looking to boost convenience and customer satisfaction.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-25 08:49:30', '2025-11-25 08:49:30', '', 25, 'https://mrarif.me/secureswipesolutions/?p=732', 0, 'revision', '', 0),
(733, 1, '2025-11-25 08:49:30', '2025-11-25 08:49:30', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traƯic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service. \n													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traƯic locations looking to increase revenue eƯortlessly.\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-25 08:49:30', '2025-11-25 08:49:30', '', 25, 'https://mrarif.me/secureswipesolutions/?p=733', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(839, 1, '2025-11-25 11:11:14', '2025-11-25 11:11:14', '<img width=\"626\" height=\"417\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/dfg.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/dfg.jpg 626w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/dfg-300x200.jpg 300w\" sizes=\"(max-width: 626px) 100vw, 626px\" />																<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m32.285 314.16-7.187 12.45c-2.208 3.823-7.105 5.136-10.929 2.928-3.823-2.208-5.135-7.105-2.928-10.928l17.318-29.996c2.209-3.826 7.102-5.137 10.928-2.928l29.995 17.318c3.824 2.208 5.136 7.104 2.929 10.928-2.208 3.824-7.105 5.136-10.929 2.928l-14.065-8.12c24.039 96.315 111.204 167.754 214.92 167.754 122.246 0 221.494-99.248 221.494-221.494s-99.248-221.494-221.494-221.494c-108.701 0-199.221 78.47-217.943 181.807-.787 4.345-4.953 7.233-9.298 6.446-4.344-.787-7.233-4.953-6.445-9.298 20.075-110.805 117.13-194.955 233.686-194.955 131.076 0 237.494 106.418 237.494 237.494s-106.418 237.494-237.494 237.494c-110.654 0-203.731-75.842-230.052-178.334zm322.08-139.767h-42.127v-23.243c0-27.81-22.524-50.675-49.882-50.675-27.357 0-49.881 22.865-49.881 50.675v23.243h-42.166v-23.243c0-51.387 41.425-93.439 92.047-93.439 50.623 0 92.009 42.052 92.009 93.439zm-204.672 16h225.326c9.275 0 16.797 7.675 16.797 17.051v181.815c0 9.415-7.522 17.05-16.797 17.05h-225.326c-9.274 0-16.835-7.635-16.835-17.05v-181.815c0-9.376 7.561-17.051 16.835-17.051zm98.043 117.762-24.865-24.865c-6.44-6.44-16.897-6.44-23.337 0-6.441 6.473-6.441 16.897 0 23.338l36.55 36.583c6.44 6.441 16.897 6.441 23.338 0 22.043-22.043 43.82-44.318 65.764-66.461 6.407-6.473 6.374-16.897-.066-23.305-6.441-6.407-16.898-6.373-23.305.067z\"></path></svg>				\n									<h5>\n							Secure Swipe Solutions						\n					</h5>\n									<p>\n						provides reliable ATM placement services that help small and\nmedium businesses save time, boost cashflow, and delivers an enhanced customer\nexperience (without the headaches or hidden fees). 					</p>', 'Why Choose Us', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2025-11-25 11:11:14', '2025-11-25 11:11:14', '', 27, 'https://mrarif.me/secureswipesolutions/?p=839', 0, 'revision', '', 0),
(738, 1, '2025-11-25 08:53:16', '2025-11-25 08:53:16', '<img width=\"1500\" height=\"997\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-300x199.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-768x510.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m32.285 314.16-7.187 12.45c-2.208 3.823-7.105 5.136-10.929 2.928-3.823-2.208-5.135-7.105-2.928-10.928l17.318-29.996c2.209-3.826 7.102-5.137 10.928-2.928l29.995 17.318c3.824 2.208 5.136 7.104 2.929 10.928-2.208 3.824-7.105 5.136-10.929 2.928l-14.065-8.12c24.039 96.315 111.204 167.754 214.92 167.754 122.246 0 221.494-99.248 221.494-221.494s-99.248-221.494-221.494-221.494c-108.701 0-199.221 78.47-217.943 181.807-.787 4.345-4.953 7.233-9.298 6.446-4.344-.787-7.233-4.953-6.445-9.298 20.075-110.805 117.13-194.955 233.686-194.955 131.076 0 237.494 106.418 237.494 237.494s-106.418 237.494-237.494 237.494c-110.654 0-203.731-75.842-230.052-178.334zm322.08-139.767h-42.127v-23.243c0-27.81-22.524-50.675-49.882-50.675-27.357 0-49.881 22.865-49.881 50.675v23.243h-42.166v-23.243c0-51.387 41.425-93.439 92.047-93.439 50.623 0 92.009 42.052 92.009 93.439zm-204.672 16h225.326c9.275 0 16.797 7.675 16.797 17.051v181.815c0 9.415-7.522 17.05-16.797 17.05h-225.326c-9.274 0-16.835-7.635-16.835-17.05v-181.815c0-9.376 7.561-17.051 16.835-17.051zm98.043 117.762-24.865-24.865c-6.44-6.44-16.897-6.44-23.337 0-6.441 6.473-6.441 16.897 0 23.338l36.55 36.583c6.44 6.441 16.897 6.441 23.338 0 22.043-22.043 43.82-44.318 65.764-66.461 6.407-6.473 6.374-16.897-.066-23.305-6.441-6.407-16.898-6.373-23.305.067z\"></path></svg>				\n									<h5>\n							Secure Swipe Solutions						\n					</h5>\n									<p>\n						provides reliable ATM placement services that help small and\nmedium businesses save time, boost cashflow, and delivers an enhanced customer\nexperience (without the headaches or hidden fees). 					</p>', 'Why Choose Us', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2025-11-25 08:53:16', '2025-11-25 08:53:16', '', 27, 'https://mrarif.me/secureswipesolutions/?p=738', 0, 'revision', '', 0),
(735, 1, '2025-11-25 08:53:10', '2025-11-25 08:53:10', '', 'privacy_18610789', '', 'inherit', 'open', 'closed', '', 'privacy_18610789', '', '', '2025-11-25 08:53:10', '2025-11-25 08:53:10', '', 27, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/privacy_18610789.svg', 0, 'attachment', 'image/svg+xml', 0),
(736, 1, '2025-11-25 08:53:15', '2025-11-25 08:53:15', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				<p>Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.</p><p>When you partner with us, you’re not just getting a machine. You’re gaining a responsive, service-driven team that values your growth.</p>', 'Why Choose Us', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2025-11-25 08:53:15', '2025-11-25 08:53:15', '', 27, 'https://mrarif.me/secureswipesolutions/?p=736', 0, 'revision', '', 0),
(737, 1, '2025-11-25 08:53:15', '2025-11-25 08:53:15', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-27-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Choose Us</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We\'re Local.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Hands-On.\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"bold\" viewBox=\"0 0 24 24\"><g><path d=\"m20.701 12.604-.537-1.526-5.793 5.793c-.566.567-1.32.879-2.121.879s-1.555-.312-2.121-.879l-4.25-4.25c-.567-.566-.879-1.32-.879-2.121s.312-1.555.879-2.121c.566-.567 1.32-.879 2.121-.879s1.555.312 2.121.879l2.129 2.128 5.704-5.704-.384-1.09-.177-1.058c-.111-.678-.558-1.24-1.193-1.503-.638-.265-1.35-.183-1.909.218l-2.779 2.012-2.81-2.017c-.564-.398-1.278-.477-1.912-.211-.63.264-1.073.825-1.184 1.499l-.544 3.387-3.407.566c-.677.111-1.239.558-1.503 1.193-.264.637-.182 1.351.219 1.91l2.011 2.779-2.017 2.81c-.397.564-.477 1.279-.211 1.912.265.63.825 1.073 1.499 1.184l3.387.545.566 3.406c.11.676.554 1.237 1.184 1.501.635.266 1.35.187 1.919-.216l2.779-2.012 2.803 2.012c.343.245.742.371 1.147.371.257 0 .515-.05.762-.153.636-.264 1.082-.826 1.193-1.501l.545-3.387 3.406-.566c.676-.111 1.236-.554 1.501-1.184.266-.633.187-1.348-.216-1.919z\"></path><path d=\"m12.25 15.75c-.256 0-.512-.098-.707-.293l-4.25-4.25c-.391-.391-.391-1.023 0-1.414s1.023-.391 1.414 0l3.543 3.543 10.043-10.043c.391-.391 1.023-.391 1.414 0s.391 1.023 0 1.414l-10.75 10.75c-.195.195-.451.293-.707.293z\"></path></g></svg>						\n										We’re Invested in Your Success.\n									</li>\n						</ul>\n				<p>Secure Swipe Solutions is a Los Angeles-based ATM placement company committed to helping local businesses boost foot traffic and improve customer experience — without the red tape.</p><p>When you partner with us, you’re not just getting a machine. You’re gaining a responsive, service-driven team that values your growth.</p>', 'Why Choose Us', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2025-11-25 08:53:15', '2025-11-25 08:53:15', '', 27, 'https://mrarif.me/secureswipesolutions/?p=737', 0, 'revision', '', 0),
(739, 1, '2025-11-25 09:12:51', '2025-11-25 09:12:51', '<h2>FAQs</h2>							\n							Do I need to pay anything for the ATM? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>No. Installation, delivery, programming, and setup are 100% free.</p>\n							Who loads the machine with cash? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We handle all cash loading, servicing, and replenishment — you do nothing.</p>\n							Will the ATM take up a lot of space? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>No. Modern ATMs have a small footprint and can fit in tight spaces or unused corners. </p>\n							Do I have to sign a long-term contract? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We use a straightforward placement agreement, but our terms are flexible. If the machine doesn’t perform well, we relocate it — simple and stress-free. </p>\n							How do I contact you if I need help? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>You get direct phone/text access to a local operator in Los Angeles. We handle all service, monitoring, and maintenance. If an issue occurs, we take care of it promptly. </p>\n							What types of businesses benefit the most? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Salons, barbershops, dispensaries, smoke shops, wellness spas, convenience stores, and<br />\nretail locations. </p>\n							How soon can we install? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Typically, within 7–10 business days depending on availability. </p>', 'FAQs', '', 'publish', 'closed', 'closed', '', 'faqs', '', '', '2025-11-25 09:26:07', '2025-11-25 09:26:07', '', 0, 'https://mrarif.me/secureswipesolutions/?page_id=739', 0, 'page', '', 0),
(740, 1, '2025-11-25 09:12:51', '2025-11-25 09:12:51', '', 'FAQs', '', 'inherit', 'closed', 'closed', '', '739-revision-v1', '', '', '2025-11-25 09:12:51', '2025-11-25 09:12:51', '', 739, 'https://mrarif.me/secureswipesolutions/?p=740', 0, 'revision', '', 0),
(741, 1, '2025-11-25 09:33:16', '2025-11-25 09:13:07', ' ', '', '', 'publish', 'closed', 'closed', '', '741', '', '', '2025-11-25 09:33:16', '2025-11-25 09:33:16', '', 0, 'https://mrarif.me/secureswipesolutions/?p=741', 4, 'nav_menu_item', '', 0),
(742, 1, '2025-11-25 09:16:11', '2025-11-25 09:16:11', '<h2>Request an Appointment</h2>', 'form', '', 'publish', 'closed', 'closed', '', 'form', '', '', '2025-11-25 09:16:11', '2025-11-25 09:16:11', '', 0, 'https://mrarif.me/secureswipesolutions/?elementor_library=form', 0, 'elementor_library', '', 0),
(743, 1, '2025-11-25 09:16:11', '2025-11-25 09:16:11', '<h2>Request an Appointment</h2>', 'form', '', 'inherit', 'closed', 'closed', '', '742-revision-v1', '', '', '2025-11-25 09:16:11', '2025-11-25 09:16:11', '', 742, 'https://mrarif.me/secureswipesolutions/?p=743', 0, 'revision', '', 0),
(744, 1, '2025-11-25 09:16:33', '2025-11-25 09:16:33', '<h1>DAO WELLNESS</h1>					<h4>Psychotherapy Focused on Giving You Control</h4>		<p>Knowing others is intelligence; Knowing yourself is true wisdom. Mastering others is strength; mastering yourself is true power.<br />-Lao Tzu</p>													<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Who I Am</h2>					<h5>To Inspire Those to Love So That We Can Lead With Passion</h5>		<p>My name is Brian Nguyen, and I am a Licensed Clinical Social Worker. My passion lies in helping others lead their lives with complete unfiltered passion and drive. Our experiences, once processed, can lead us to amazing success and prosperity. You will dictate the treatment and how it flows, and you are in full control of each session. I will be your support throughout.</p><p>I am trained​ in numerous modalities ranging from Cognitive Behavioral Therapy, Eye Movement Desensitization and Reprocessing (EMDR), Mindfulness, Hakomi, Solution Focused Therapy, and Motivational Interviewing. I will approach your treatment in a multitude of ways and utilize all the tools I have at my disposal to ensure complete overall wellness.</p>								<a href=\"https://mrarif.me/daowellness/about/\">\n									Learn More\n					</a>\n									<h2>Services </h2>							\n							<figure><img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" /></figure><h5>Individual Therapy</h5><p>Individual therapy is immensely intimate and extremely impactful. It will allow you to gain unbiased and genuine support from me to support your goals.rk.</p>										<a href=\"https://mrarif.me/daowellness/individual-therapy/\">\n									Learn More\n					</a>\n									<figure><img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" /></figure><h5>Eye Movement Desensitization And Reprocessing</h5><p>EMDR (Eye Movement Desensitization and Reprocessing) is a psychotherapy that enables people to heal from the symptoms </p>										<a href=\"https://mrarif.me/daowellness/eye-movement-desensitization-and-reprocessing/\">\n									Learn More\n					</a>\n									<figure><img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" /></figure><h5>Couples Therapy</h5><p>Relationships are dynamic and ever changing. As long as no one is hurt, there is no wrong relationship. I will help you and your partner find a solution </p>										<a href=\"https://mrarif.me/daowellness/couples-therapy/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/daowellness/services/\">\n									View All Services \n					</a>\n									<h2>Get In Touch With Me</h2>							\n				Ready to start your journey to self-discovery and personal empowerment? Reach out today for a personalized therapy plan that suits your needs.								<a href=\"https://mrarif.me/daowellness/contact/\">\n									Contact \n					</a>\n									<h2>Blog</h2>							\n			<a href=\"https://mrarif.me/secureswipesolutions/hello-world/\" title=\"Hello world!\">\n				<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" />			</a>\n				<a href=\"https://mrarif.me/secureswipesolutions/category/uncategorized/\">Uncategorized</a>			\n										<h5>\n				<a href=\"https://mrarif.me/secureswipesolutions/hello-world/\">Hello world!</a>			</h5>\n				November 15, 2025			\n			<p>Welcome to WordPress. This is your first post. Edit or delete it, ...</p>\n								<a href=\"https://mrarif.me/secureswipesolutions/hello-world/\" title=\"Hello world!\" aria-label=\"Read more about Hello world!\">\n							Read More						\n			</a>', 'Home-old', '', 'publish', 'closed', 'closed', '', 'home-old', '', '', '2025-11-25 09:16:33', '2025-11-25 09:16:33', '', 0, 'https://mrarif.me/secureswipesolutions/?elementor_library=home-old', 0, 'elementor_library', '', 0),
(745, 1, '2025-11-25 09:16:33', '2025-11-25 09:16:33', '<h1>DAO WELLNESS</h1>					<h4>Psychotherapy Focused on Giving You Control</h4>		<p>Knowing others is intelligence; Knowing yourself is true wisdom. Mastering others is strength; mastering yourself is true power.<br />-Lao Tzu</p>													<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Who I Am</h2>					<h5>To Inspire Those to Love So That We Can Lead With Passion</h5>		<p>My name is Brian Nguyen, and I am a Licensed Clinical Social Worker. My passion lies in helping others lead their lives with complete unfiltered passion and drive. Our experiences, once processed, can lead us to amazing success and prosperity. You will dictate the treatment and how it flows, and you are in full control of each session. I will be your support throughout.</p><p>I am trained​ in numerous modalities ranging from Cognitive Behavioral Therapy, Eye Movement Desensitization and Reprocessing (EMDR), Mindfulness, Hakomi, Solution Focused Therapy, and Motivational Interviewing. I will approach your treatment in a multitude of ways and utilize all the tools I have at my disposal to ensure complete overall wellness.</p>								<a href=\"https://mrarif.me/daowellness/about/\">\n									Learn More\n					</a>\n									<h2>Services </h2>							\n							<figure><img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" /></figure><h5>Individual Therapy</h5><p>Individual therapy is immensely intimate and extremely impactful. It will allow you to gain unbiased and genuine support from me to support your goals.rk.</p>										<a href=\"https://mrarif.me/daowellness/individual-therapy/\">\n									Learn More\n					</a>\n									<figure><img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" /></figure><h5>Eye Movement Desensitization And Reprocessing</h5><p>EMDR (Eye Movement Desensitization and Reprocessing) is a psychotherapy that enables people to heal from the symptoms </p>										<a href=\"https://mrarif.me/daowellness/eye-movement-desensitization-and-reprocessing/\">\n									Learn More\n					</a>\n									<figure><img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" /></figure><h5>Couples Therapy</h5><p>Relationships are dynamic and ever changing. As long as no one is hurt, there is no wrong relationship. I will help you and your partner find a solution </p>										<a href=\"https://mrarif.me/daowellness/couples-therapy/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/daowellness/services/\">\n									View All Services \n					</a>\n									<h2>Get In Touch With Me</h2>							\n				Ready to start your journey to self-discovery and personal empowerment? Reach out today for a personalized therapy plan that suits your needs.								<a href=\"https://mrarif.me/daowellness/contact/\">\n									Contact \n					</a>\n									<h2>Blog</h2>							\n			<a href=\"https://mrarif.me/secureswipesolutions/hello-world/\" title=\"Hello world!\">\n				<img src=\"https://mrarif.me/secureswipesolutions/wp-content/plugins/elementor/assets/images/placeholder.png\" />			</a>\n				<a href=\"https://mrarif.me/secureswipesolutions/category/uncategorized/\">Uncategorized</a>			\n										<h5>\n				<a href=\"https://mrarif.me/secureswipesolutions/hello-world/\">Hello world!</a>			</h5>\n				November 15, 2025			\n			<p>Welcome to WordPress. This is your first post. Edit or delete it, ...</p>\n								<a href=\"https://mrarif.me/secureswipesolutions/hello-world/\" title=\"Hello world!\" aria-label=\"Read more about Hello world!\">\n							Read More						\n			</a>', 'Home-old', '', 'inherit', 'closed', 'closed', '', '744-revision-v1', '', '', '2025-11-25 09:16:33', '2025-11-25 09:16:33', '', 744, 'https://mrarif.me/secureswipesolutions/?p=745', 0, 'revision', '', 0),
(746, 1, '2025-11-25 09:19:37', '2025-11-25 09:19:37', '', 'FAQs', '', 'inherit', 'closed', 'closed', '', '739-revision-v1', '', '', '2025-11-25 09:19:37', '2025-11-25 09:19:37', '', 739, 'https://mrarif.me/secureswipesolutions/?p=746', 0, 'revision', '', 0),
(747, 1, '2025-11-25 09:19:37', '2025-11-25 09:19:37', '', 'FAQs', '', 'inherit', 'closed', 'closed', '', '739-revision-v1', '', '', '2025-11-25 09:19:37', '2025-11-25 09:19:37', '', 739, 'https://mrarif.me/secureswipesolutions/?p=747', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(748, 1, '2025-11-25 09:19:37', '2025-11-25 09:19:37', '<h2>FAQs</h2>							\n							FAQ Question 1						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n							FAQ Question 2						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n							FAQ Question 3						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>', 'FAQs', '', 'inherit', 'closed', 'closed', '', '739-revision-v1', '', '', '2025-11-25 09:19:37', '2025-11-25 09:19:37', '', 739, 'https://mrarif.me/secureswipesolutions/?p=748', 0, 'revision', '', 0),
(749, 1, '2025-11-25 09:20:17', '2025-11-25 09:20:17', '<h2>FAQs</h2>							\n							FAQ Question 1						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n							FAQ Question 2						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n							FAQ Question 3						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>', 'FAQs', '', 'inherit', 'closed', 'closed', '', '739-revision-v1', '', '', '2025-11-25 09:20:17', '2025-11-25 09:20:17', '', 739, 'https://mrarif.me/secureswipesolutions/?p=749', 0, 'revision', '', 0),
(750, 1, '2025-11-25 09:20:17', '2025-11-25 09:20:17', '<h2>FAQs</h2>							\n							FAQ Question 1						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n							FAQ Question 2						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n							FAQ Question 3						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>', 'FAQs', '', 'inherit', 'closed', 'closed', '', '739-revision-v1', '', '', '2025-11-25 09:20:17', '2025-11-25 09:20:17', '', 739, 'https://mrarif.me/secureswipesolutions/?p=750', 0, 'revision', '', 0),
(751, 1, '2025-11-25 09:20:17', '2025-11-25 09:20:17', '<h2>FAQs</h2>							\n							FAQ Question 1						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n							FAQ Question 2						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n							FAQ Question 3						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>', 'FAQs', '', 'inherit', 'closed', 'closed', '', '739-revision-v1', '', '', '2025-11-25 09:20:17', '2025-11-25 09:20:17', '', 739, 'https://mrarif.me/secureswipesolutions/?p=751', 0, 'revision', '', 0),
(752, 1, '2025-11-25 09:21:03', '2025-11-25 09:21:03', '<h2>FAQs</h2>							\n							FAQ Question 1						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n							FAQ Question 2						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n							FAQ Question 3						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>', 'FAQs', '', 'inherit', 'closed', 'closed', '', '739-revision-v1', '', '', '2025-11-25 09:21:03', '2025-11-25 09:21:03', '', 739, 'https://mrarif.me/secureswipesolutions/?p=752', 0, 'revision', '', 0),
(753, 1, '2025-11-25 09:21:03', '2025-11-25 09:21:03', '<h2>FAQs</h2>							\n							FAQ Question 1						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n							FAQ Question 2						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n							FAQ Question 3						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>', 'FAQs', '', 'inherit', 'closed', 'closed', '', '739-revision-v1', '', '', '2025-11-25 09:21:03', '2025-11-25 09:21:03', '', 739, 'https://mrarif.me/secureswipesolutions/?p=753', 0, 'revision', '', 0),
(754, 1, '2025-11-25 09:21:03', '2025-11-25 09:21:03', '<h2>FAQs</h2>							\n							FAQ Question 1						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n							FAQ Question 2						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n							FAQ Question 3						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>', 'FAQs', '', 'inherit', 'closed', 'closed', '', '739-revision-v1', '', '', '2025-11-25 09:21:03', '2025-11-25 09:21:03', '', 739, 'https://mrarif.me/secureswipesolutions/?p=754', 0, 'revision', '', 0),
(755, 1, '2025-11-25 09:25:01', '2025-11-25 09:25:01', '<h2>FAQs</h2>							\n							FAQ Question 1						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n							FAQ Question 2						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n							FAQ Question 3						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>', 'FAQs', '', 'inherit', 'closed', 'closed', '', '739-revision-v1', '', '', '2025-11-25 09:25:01', '2025-11-25 09:25:01', '', 739, 'https://mrarif.me/secureswipesolutions/?p=755', 0, 'revision', '', 0),
(756, 1, '2025-11-25 09:25:01', '2025-11-25 09:25:01', '<h2>FAQs</h2>							\n							FAQ Question 1						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n							FAQ Question 2						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n							FAQ Question 3						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>', 'FAQs', '', 'inherit', 'closed', 'closed', '', '739-revision-v1', '', '', '2025-11-25 09:25:01', '2025-11-25 09:25:01', '', 739, 'https://mrarif.me/secureswipesolutions/?p=756', 0, 'revision', '', 0),
(757, 1, '2025-11-25 09:25:01', '2025-11-25 09:25:01', '<h2>FAQs</h2>							\n							Do I need to pay anything for the ATM? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>No. Installation, delivery, programming, and setup are 100% free.</p>\n							Who loads the machine with cash? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We handle all cash loading, servicing, and replenishment — you do nothing.</p>\n							Will the ATM take up a lot of space? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>No. Modern ATMs have a small footprint and can fit in tight spaces or unused corners. </p>\n							Do I have to sign a long-term contract? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We use a straightforward placement agreement, but our terms are flexible. If the machine doesn’t perform well, we relocate it — simple and stress-free. </p>\n							How do I contact you if I need help? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>You get direct phone/text access to a local operator in Los Angeles. We handle all service, monitoring, and maintenance. If an issue occurs, we take care of it promptly. </p>\n							What types of businesses benefit the most? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Salons, barbershops, dispensaries, smoke shops, wellness spas, convenience stores, and<br />\nretail locations. </p>\n							How soon can we install? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Typically, within 7–10 business days depending on availability. </p>', 'FAQs', '', 'inherit', 'closed', 'closed', '', '739-revision-v1', '', '', '2025-11-25 09:25:01', '2025-11-25 09:25:01', '', 739, 'https://mrarif.me/secureswipesolutions/?p=757', 0, 'revision', '', 0),
(758, 1, '2025-11-25 09:26:07', '2025-11-25 09:26:07', '<h2>FAQs</h2>							\n							Do I need to pay anything for the ATM? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>No. Installation, delivery, programming, and setup are 100% free.</p>\n							Who loads the machine with cash? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We handle all cash loading, servicing, and replenishment — you do nothing.</p>\n							Will the ATM take up a lot of space? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>No. Modern ATMs have a small footprint and can fit in tight spaces or unused corners. </p>\n							Do I have to sign a long-term contract? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We use a straightforward placement agreement, but our terms are flexible. If the machine doesn’t perform well, we relocate it — simple and stress-free. </p>\n							How do I contact you if I need help? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>You get direct phone/text access to a local operator in Los Angeles. We handle all service, monitoring, and maintenance. If an issue occurs, we take care of it promptly. </p>\n							What types of businesses benefit the most? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Salons, barbershops, dispensaries, smoke shops, wellness spas, convenience stores, and<br />\nretail locations. </p>\n							How soon can we install? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Typically, within 7–10 business days depending on availability. </p>', 'FAQs', '', 'inherit', 'closed', 'closed', '', '739-revision-v1', '', '', '2025-11-25 09:26:07', '2025-11-25 09:26:07', '', 739, 'https://mrarif.me/secureswipesolutions/?p=758', 0, 'revision', '', 0),
(759, 1, '2025-11-25 09:26:07', '2025-11-25 09:26:07', '<h2>FAQs</h2>							\n							Do I need to pay anything for the ATM? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>No. Installation, delivery, programming, and setup are 100% free.</p>\n							Who loads the machine with cash? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We handle all cash loading, servicing, and replenishment — you do nothing.</p>\n							Will the ATM take up a lot of space? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>No. Modern ATMs have a small footprint and can fit in tight spaces or unused corners. </p>\n							Do I have to sign a long-term contract? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We use a straightforward placement agreement, but our terms are flexible. If the machine doesn’t perform well, we relocate it — simple and stress-free. </p>\n							How do I contact you if I need help? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>You get direct phone/text access to a local operator in Los Angeles. We handle all service, monitoring, and maintenance. If an issue occurs, we take care of it promptly. </p>\n							What types of businesses benefit the most? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Salons, barbershops, dispensaries, smoke shops, wellness spas, convenience stores, and<br />\nretail locations. </p>\n							How soon can we install? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Typically, within 7–10 business days depending on availability. </p>', 'FAQs', '', 'inherit', 'closed', 'closed', '', '739-revision-v1', '', '', '2025-11-25 09:26:07', '2025-11-25 09:26:07', '', 739, 'https://mrarif.me/secureswipesolutions/?p=759', 0, 'revision', '', 0),
(760, 1, '2025-11-25 09:26:07', '2025-11-25 09:26:07', '<h2>FAQs</h2>							\n							Do I need to pay anything for the ATM? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>No. Installation, delivery, programming, and setup are 100% free.</p>\n							Who loads the machine with cash? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We handle all cash loading, servicing, and replenishment — you do nothing.</p>\n							Will the ATM take up a lot of space? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>No. Modern ATMs have a small footprint and can fit in tight spaces or unused corners. </p>\n							Do I have to sign a long-term contract? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>We use a straightforward placement agreement, but our terms are flexible. If the machine doesn’t perform well, we relocate it — simple and stress-free. </p>\n							How do I contact you if I need help? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>You get direct phone/text access to a local operator in Los Angeles. We handle all service, monitoring, and maintenance. If an issue occurs, we take care of it promptly. </p>\n							What types of businesses benefit the most? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Salons, barbershops, dispensaries, smoke shops, wellness spas, convenience stores, and<br />\nretail locations. </p>\n							How soon can we install? 						\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n									<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"></path></svg>								\n					<p>Typically, within 7–10 business days depending on availability. </p>', 'FAQs', '', 'inherit', 'closed', 'closed', '', '739-revision-v1', '', '', '2025-11-25 09:26:07', '2025-11-25 09:26:07', '', 739, 'https://mrarif.me/secureswipesolutions/?p=760', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(761, 1, '2025-11-25 09:33:03', '2025-11-25 09:33:03', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M63.457,49.62988a1.999,1.999,0,0,0-2.82715-.08691L38.59766,70.25488l-9.22754-8.67383a2,2,0,0,0-2.74023,2.91406L37.22754,74.457a2.00015,2.00015,0,0,0,2.74023,0l23.40234-22A1.99992,1.99992,0,0,0,63.457,49.62988Z\"></path><path d=\"M21.49121,39.81152a2.00029,2.00029,0,0,0-2.81152.30957,34.99343,34.99343,0,0,0-2.4834,3.52051,1.99947,1.99947,0,0,0,.65233,2.75195,2.02718,2.02718,0,0,0,2.752-.65234,31.08368,31.08368,0,0,1,2.2002-3.11816A2.00019,2.00019,0,0,0,21.49121,39.81152Z\"></path><path d=\"M52.53906,31.68945a2.02441,2.02441,0,0,0,2.376-1.53418,1.99948,1.99948,0,0,0-1.53418-2.376,34.75616,34.75616,0,0,0-4.26074-.64258,1.99993,1.99993,0,1,0-.35156,3.98438A30.76869,30.76869,0,0,1,52.53906,31.68945Z\"></path><path d=\"M11.60156,68.49414A2.00087,2.00087,0,0,0,13.56545,70.125a2.021,2.021,0,0,0,1.96776-2.36914,31.54123,31.54123,0,0,1-.47266-3.78711,2.00013,2.00013,0,1,0-3.99219.25391A35.42,35.42,0,0,0,11.60156,68.49414Z\"></path><path d=\"M76.03906,54.31641a1.98391,1.98391,0,0,0,.25055.56409c.61652-.2403,1.23193-.48346,1.86176-.691A7.663,7.663,0,0,1,79.351,51.368c-.22949-.72107-.47968-1.43652-.75525-2.13953a2.00044,2.00044,0,1,0-3.72461,1.46094A30.56134,30.56134,0,0,1,76.03906,54.31641Z\"></path><path d=\"M65.80762,35.52734a2.00052,2.00052,0,0,0-.56934-2.77051,35.21845,35.21845,0,0,0-3.73535-2.14453,1.99981,1.99981,0,0,0-1.77539,3.584,31.29353,31.29353,0,0,1,3.30957,1.90039A2.02462,2.02462,0,0,0,65.80762,35.52734Z\"></path><path d=\"M71.7832,38.33105a1.99952,1.99952,0,1,0-2.94531,2.70508A31.4367,31.4367,0,0,1,71.24217,43.999a2.03139,2.03139,0,0,0,2.79005.46389,1.99988,1.99988,0,0,0,.46387-2.79A35.26906,35.26906,0,0,0,71.7832,38.33105Z\"></path><path d=\"M13.18262,57.9707a2.01714,2.01714,0,0,0,2.32812-1.60547,30.998,30.998,0,0,1,.91992-3.70117,1.99985,1.99985,0,1,0-3.81445-1.20312,34.82591,34.82591,0,0,0-1.03906,4.18164A1.99871,1.99871,0,0,0,13.18262,57.9707Z\"></path><path d=\"M36.876,32.27437a1.91577,1.91577,0,0,0,.5517-.07418,30.98865,30.98865,0,0,1,3.72461-.82324,1.99969,1.99969,0,0,0-.61914-3.95117,35.03118,35.03118,0,0,0-4.207.92871A2.00054,2.00054,0,0,0,34.9541,30.8281,2.04073,2.04073,0,0,0,36.876,32.27437Z\"></path><path d=\"M46.02832,93c-.27441.02148-.63574-.00488-.9541-.01367a1.99991,1.99991,0,1,0-.11914,3.998c.3584.01074.71484.01074,1.0752.01563.808,0,1.62079-.03748,2.42957-.09387A7.67571,7.67571,0,0,1,48,94.28613V92.92975C47.34338,92.97137,46.68457,93,46.02832,93Z\"></path><path d=\"M37.54688,91.834a30.83649,30.83649,0,0,1-3.60059-1.2627,2,2,0,0,0-1.55469,3.68555A34.96388,34.96388,0,0,0,36.459,95.6836a2.02657,2.02657,0,0,0,2.46874-1.38086A2.00107,2.00107,0,0,0,37.54688,91.834Z\"></path><path d=\"M16.2666,80.47461a2.02966,2.02966,0,0,0,2.75488.6416,2.00116,2.00116,0,0,0,.6416-2.75488,31.00909,31.00909,0,0,1-1.8125-3.35547,1.9998,1.9998,0,1,0-3.62891,1.68164A35.261,35.261,0,0,0,16.2666,80.47461Z\"></path><path d=\"M24.94238,89.959a2.02558,2.02558,0,0,0,2.80078-.39258,1.99965,1.99965,0,0,0-.39258-2.80078,31.20992,31.20992,0,0,1-2.90039-2.48047,2.00006,2.00006,0,0,0-2.78125,2.875A35.09214,35.09214,0,0,0,24.94238,89.959Z\"></path><path d=\"M26.04784,37.70544a1.97083,1.97083,0,0,0,1.208-.3988,31.33317,31.33317,0,0,1,3.17285-2.11719,2.00037,2.00037,0,1,0-2.01367-3.457,35.27032,35.27032,0,0,0-3.5791,2.39062,1.99205,1.99205,0,0,0,1.2119,3.5824Z\"></path><path d=\"M46,104A42,42,0,1,1,85.59363,48.00537C85.634,48.00476,85.67334,48,85.71387,48h4.10059a46.0405,46.0405,0,0,0-9.92438-17.062l3.37164-3.37164a17.02613,17.02613,0,0,1,1.03612,1.48338,1.99985,1.99985,0,0,0,3.40431-2.09959,20.72153,20.72153,0,0,0-2.9068-3.699.31835.31835,0,0,0-.03516-.03723,19.006,19.006,0,0,0-3.73676-2.93176,1.99954,1.99954,0,1,0-2.04687,3.43555A14.52372,14.52372,0,0,1,80.445,24.72687L77.05884,28.113A45.8366,45.8366,0,0,0,52,16.39526V12h4a2.0001,2.0001,0,0,0,2-2V2a2.0001,2.0001,0,0,0-2-2H36a2.0001,2.0001,0,0,0-2,2v8a2.0001,2.0001,0,0,0,2,2h4v4.40405A45.85274,45.85274,0,0,0,14.93616,28.108L11.555,24.72687a14.52685,14.52685,0,0,1,1.46844-1.00909,1.99954,1.99954,0,0,0-2.04687-3.43555,19.13535,19.13535,0,0,0-3.751,2.94336c-.008.008-.01312.01758-.02094.02563a20.72153,20.72153,0,0,0-2.9068,3.699,1.99947,1.99947,0,0,0,.65234,2.752,2.02308,2.02308,0,0,0,2.752-.65234,17.01643,17.01643,0,0,1,1.03619-1.48334L12.108,30.93616a45.96878,45.96878,0,0,0,44.1402,75.89868,37.33789,37.33789,0,0,1-1.59467-3.73584A42.00487,42.00487,0,0,1,46,104Zm2-87.95532C47.33667,16.01617,46.67023,16,46,16c-.67072,0-1.33618.02222-2,.05078V12h4ZM38,8V4H54V8H38Z\"></path><path d=\"M124.28613,82H122.752a33.31979,33.31979,0,0,0-3.93359-9.50488l1.082-1.082a3.71858,3.71858,0,0,0,0-5.25293l-6.06055-6.06055a3.71681,3.71681,0,0,0-5.25293,0l-1.082,1.082A33.31979,33.31979,0,0,0,98,57.248V55.71387A3.718,3.718,0,0,0,94.28613,52H85.71387A3.718,3.718,0,0,0,82,55.71387V57.248a33.31979,33.31979,0,0,0-9.50488,3.93359l-1.082-1.082a3.71681,3.71681,0,0,0-5.25293,0l-6.06055,6.06055a3.71858,3.71858,0,0,0,0,5.25293l1.082,1.082A33.31979,33.31979,0,0,0,57.248,82H55.71387A3.718,3.718,0,0,0,52,85.71387v8.57227A3.718,3.718,0,0,0,55.71387,98H57.248a33.31979,33.31979,0,0,0,3.93359,9.50488l-1.082,1.082a3.71858,3.71858,0,0,0,0,5.25293l6.06152,6.06152a3.721,3.721,0,0,0,5.252-.001l1.082-1.082A33.31979,33.31979,0,0,0,82,122.752v1.53418A3.718,3.718,0,0,0,85.71387,128h8.57227A3.718,3.718,0,0,0,98,124.28613V122.752a33.31979,33.31979,0,0,0,9.50488-3.93359l1.083,1.083a3.721,3.721,0,0,0,5.252-.001l6.06055-6.06055a3.71858,3.71858,0,0,0,0-5.25293l-1.082-1.082A33.31979,33.31979,0,0,0,122.752,98h1.53418A3.718,3.718,0,0,0,128,94.28613V85.71387A3.718,3.718,0,0,0,124.28613,82ZM124,94h-2.86035a1.99951,1.99951,0,0,0-1.96387,1.624,29.42633,29.42633,0,0,1-4.56641,11.0332,1.99907,1.99907,0,0,0,.24121,2.53613l2.01953,2.02051-5.65625,5.65625-2.02051-2.01953a1.99907,1.99907,0,0,0-2.53613-.24121,29.42645,29.42645,0,0,1-11.0332,4.56641A1.99951,1.99951,0,0,0,94,121.13965V124H86v-2.86035a1.99951,1.99951,0,0,0-1.624-1.96387,29.42621,29.42621,0,0,1-11.0332-4.56641,2.00164,2.00164,0,0,0-2.53613.24121l-2.02051,2.01953-5.65625-5.65625,2.01953-2.02051a1.99907,1.99907,0,0,0,.24121-2.53613A29.42633,29.42633,0,0,1,60.82422,95.624,1.99951,1.99951,0,0,0,58.86035,94H56V86h2.86035a1.99951,1.99951,0,0,0,1.96387-1.624,29.42633,29.42633,0,0,1,4.56641-11.0332,1.99907,1.99907,0,0,0-.24121-2.53613l-2.01953-2.02051,5.65625-5.65625,2.02051,2.01953a1.99918,1.99918,0,0,0,2.53613.24121A29.42621,29.42621,0,0,1,84.376,60.82422,1.99951,1.99951,0,0,0,86,58.86035V56h8v2.86035a1.99951,1.99951,0,0,0,1.624,1.96387,29.42645,29.42645,0,0,1,11.0332,4.56641,1.99639,1.99639,0,0,0,2.53613-.24121l2.02051-2.01953,5.65625,5.65625-2.01953,2.02051a1.99907,1.99907,0,0,0-.24121,2.53613,29.42633,29.42633,0,0,1,4.56641,11.0332A1.99951,1.99951,0,0,0,121.13965,86H124Z\"></path><path d=\"M90,68a22,22,0,1,0,22,22A22.02489,22.02489,0,0,0,90,68Zm0,40a18,18,0,1,1,18-18A18.02094,18.02094,0,0,1,90,108Z\"></path></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traffic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'publish', 'closed', 'closed', '', 'how-it-works', '', '', '2025-11-25 12:55:47', '2025-11-25 12:55:47', '', 0, 'https://mrarif.me/secureswipesolutions/?page_id=761', 0, 'page', '', 0),
(762, 1, '2025-11-25 09:33:03', '2025-11-25 09:33:03', '', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 09:33:03', '2025-11-25 09:33:03', '', 761, 'https://mrarif.me/secureswipesolutions/?p=762', 0, 'revision', '', 0),
(763, 1, '2025-11-25 09:33:16', '2025-11-25 09:33:16', ' ', '', '', 'publish', 'closed', 'closed', '', '763', '', '', '2025-11-25 09:33:16', '2025-11-25 09:33:16', '', 0, 'https://mrarif.me/secureswipesolutions/?p=763', 2, 'nav_menu_item', '', 0),
(764, 1, '2025-11-25 09:35:06', '2025-11-25 09:35:06', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"350\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3.png 350w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3-300x144.png 300w\" sizes=\"(max-width: 350px) 100vw, 350px\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-25 09:35:06', '2025-11-25 09:35:06', '', 44, 'https://mrarif.me/secureswipesolutions/?p=764', 0, 'revision', '', 0),
(765, 1, '2025-11-25 09:39:43', '2025-11-25 09:39:43', '', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 09:39:43', '2025-11-25 09:39:43', '', 761, 'https://mrarif.me/secureswipesolutions/?p=765', 0, 'revision', '', 0),
(766, 1, '2025-11-25 09:39:43', '2025-11-25 09:39:43', '', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 09:39:43', '2025-11-25 09:39:43', '', 761, 'https://mrarif.me/secureswipesolutions/?p=766', 0, 'revision', '', 0),
(767, 1, '2025-11-25 09:39:43', '2025-11-25 09:39:43', '<h2>Add Your Heading Text Here</h2>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 09:39:43', '2025-11-25 09:39:43', '', 761, 'https://mrarif.me/secureswipesolutions/?p=767', 0, 'revision', '', 0),
(768, 1, '2025-11-25 09:46:10', '2025-11-25 09:46:10', '<h2>Add Your Heading Text Here</h2>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 09:46:10', '2025-11-25 09:46:10', '', 761, 'https://mrarif.me/secureswipesolutions/?p=768', 0, 'revision', '', 0),
(769, 1, '2025-11-25 09:46:10', '2025-11-25 09:46:10', '<h2>Add Your Heading Text Here</h2>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 09:46:10', '2025-11-25 09:46:10', '', 761, 'https://mrarif.me/secureswipesolutions/?p=769', 0, 'revision', '', 0),
(770, 1, '2025-11-25 09:46:10', '2025-11-25 09:46:10', '<h2>How It Works</h2>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traƯic, and business needs to ensure a strong fit.</p>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traƯic, and business needs to ensure a strong fit.</p>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traƯic, and business needs to ensure a strong fit.</p>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traƯic, and business needs to ensure a strong fit.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 09:46:10', '2025-11-25 09:46:10', '', 761, 'https://mrarif.me/secureswipesolutions/?p=770', 0, 'revision', '', 0),
(772, 1, '2025-11-25 10:10:49', '2025-11-25 10:10:49', '', 'chat_12839357 (1)', '', 'inherit', 'open', 'closed', '', 'chat_12839357-1', '', '', '2025-11-25 10:10:49', '2025-11-25 10:10:49', '', 761, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/chat_12839357-1.svg', 0, 'attachment', 'image/svg+xml', 0),
(773, 1, '2025-11-25 10:11:03', '2025-11-25 10:11:03', '', 'productivity_7495285', '', 'inherit', 'open', 'closed', '', 'productivity_7495285', '', '', '2025-11-25 10:11:03', '2025-11-25 10:11:03', '', 761, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/productivity_7495285.svg', 0, 'attachment', 'image/svg+xml', 0),
(774, 1, '2025-11-25 10:11:31', '2025-11-25 10:11:31', '', 'delivery_2676600', '', 'inherit', 'open', 'closed', '', 'delivery_2676600', '', '', '2025-11-25 10:11:31', '2025-11-25 10:11:31', '', 761, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/delivery_2676600.svg', 0, 'attachment', 'image/svg+xml', 0),
(775, 1, '2025-11-25 10:11:44', '2025-11-25 10:11:44', '', 'welfare_16848953', '', 'inherit', 'open', 'closed', '', 'welfare_16848953', '', '', '2025-11-25 10:11:44', '2025-11-25 10:11:44', '', 761, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/welfare_16848953.svg', 0, 'attachment', 'image/svg+xml', 0),
(776, 1, '2025-11-25 10:12:08', '2025-11-25 10:12:08', '<h2>How It Works</h2>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traƯic, and business needs to ensure a strong fit.</p>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traƯic, and business needs to ensure a strong fit.</p>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traƯic, and business needs to ensure a strong fit.</p>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traƯic, and business needs to ensure a strong fit.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:12:08', '2025-11-25 10:12:08', '', 761, 'https://mrarif.me/secureswipesolutions/?p=776', 0, 'revision', '', 0),
(777, 1, '2025-11-25 10:12:08', '2025-11-25 10:12:08', '<h2>How It Works</h2>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traƯic, and business needs to ensure a strong fit.</p>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traƯic, and business needs to ensure a strong fit.</p>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traƯic, and business needs to ensure a strong fit.</p>							\n											<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traƯic, and business needs to ensure a strong fit.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:12:08', '2025-11-25 10:12:08', '', 761, 'https://mrarif.me/secureswipesolutions/?p=777', 0, 'revision', '', 0),
(778, 1, '2025-11-25 10:12:08', '2025-11-25 10:12:08', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\" width=\"512\" height=\"512\"><g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M443.79,332.07c0.98-2.39,1.91-4.81,2.79-7.25c1.73-4.78,6.21-8,11.29-8h34.66c6.61,0,11.97-5.36,11.97-11.97v-97.7&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-34.66c-5.08,0-9.56-3.22-11.29-8c-2.13-5.88-4.52-11.64-7.16-17.26&#10;&#9;&#9;c-2.16-4.6-1.28-10.05,2.32-13.65l24.52-24.52c4.67-4.67,4.67-12.25,0-16.92l-69.09-69.09c-4.67-4.67-12.25-4.67-16.92,0&#10;&#9;&#9;l-24.52,24.52c-3.6,3.6-9.05,4.48-13.65,2.32c-5.62-2.64-11.38-5.03-17.26-7.16c-4.78-1.73-8-6.21-8-11.29V19.47&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-97.7c-6.61,0-11.97,5.36-11.97,11.97v34.66c0,5.08-3.22,9.56-8,11.29&#10;&#9;&#9;c-5.88,2.13-11.64,4.52-17.26,7.16c-4.6,2.16-10.05,1.28-13.65-2.32l-24.52-24.52c-4.67-4.67-12.25-4.67-16.92,0l-69.09,69.09&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l24.52,24.52c3.6,3.6,4.48,9.05,2.32,13.65c-2.64,5.62-5.03,11.38-7.16,17.26&#10;&#9;&#9;c-1.73,4.78-6.21,8-11.29,8H19.47c-6.61,0-11.97,5.36-11.97,11.97v97.7c0,6.61,5.36,11.97,11.97,11.97h34.66&#10;&#9;&#9;c5.08,0,9.56,3.22,11.29,8c2.13,5.88,4.52,11.64,7.16,17.26c2.16,4.6,1.28,10.05-2.32,13.65l-24.52,24.52&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l69.09,69.09c4.67,4.67,12.25,4.67,16.92,0l24.52-24.52c3.6-3.6,9.05-4.48,13.65-2.32&#10;&#9;&#9;c5.62,2.64,11.38,5.03,17.26,7.16c4.78,1.73,8,6.21,8,11.29v34.66c0,6.61,5.36,11.97,11.97,11.97h97.7&#10;&#9;&#9;c6.61,0,11.97-5.36,11.97-11.97v-34.66c0-5.08,3.22-9.56,8-11.29c2.44-0.88,4.86-1.81,7.25-2.79\"></path>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M196.106,164.975c17.192-11.34,37.769-17.94,59.894-17.94c23.273,0,44.833,7.302,62.542,19.743&#10;&#9;&#9;c1.404,0.979,2.782,1.997,4.121,3.053c25.733,19.911,42.296,51.118,42.296,86.176c0,35.057-16.563,66.251-42.296,86.162&#10;&#9;&#9;c-1.339,1.069-2.717,2.087-4.121,3.065c-17.709,12.429-39.269,19.732-62.542,19.732s-44.833-7.302-62.542-19.732&#10;&#9;&#9;c-1.404-0.979-2.782-1.996-4.121-3.065c-25.733-19.911-42.296-51.105-42.296-86.162c0-25.325,8.643-48.641,23.143-67.14\"></path>	<g>		<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;&#9;M473.856,483.005c-15.5,13.394-35.701,21.495-57.794,21.495c-48.843,0-88.438-39.595-88.438-88.438s39.595-88.438,88.438-88.438&#10;&#9;&#9;&#9;s88.438,39.595,88.438,88.438c0,14.174-3.334,27.569-9.262,39.444\"></path>		<g>							<polyline style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"&#10;&#9;&#9;&#9;&#9;390.094,434.86 416.062,460.828 442.03,434.86 &#9;&#9;&#9;\"></polyline>							<line style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" x1=\"416.062\" y1=\"460.828\" x2=\"416.062\" y2=\"371.296\"></line>		</g>	</g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M249.556,230.899v40.202c0,2.209,1.791,4,4,4h26.889\"></path></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:12:08', '2025-11-25 10:12:08', '', 761, 'https://mrarif.me/secureswipesolutions/?p=778', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(779, 1, '2025-11-25 10:12:18', '2025-11-25 10:12:18', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\" width=\"512\" height=\"512\"><g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M443.79,332.07c0.98-2.39,1.91-4.81,2.79-7.25c1.73-4.78,6.21-8,11.29-8h34.66c6.61,0,11.97-5.36,11.97-11.97v-97.7&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-34.66c-5.08,0-9.56-3.22-11.29-8c-2.13-5.88-4.52-11.64-7.16-17.26&#10;&#9;&#9;c-2.16-4.6-1.28-10.05,2.32-13.65l24.52-24.52c4.67-4.67,4.67-12.25,0-16.92l-69.09-69.09c-4.67-4.67-12.25-4.67-16.92,0&#10;&#9;&#9;l-24.52,24.52c-3.6,3.6-9.05,4.48-13.65,2.32c-5.62-2.64-11.38-5.03-17.26-7.16c-4.78-1.73-8-6.21-8-11.29V19.47&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-97.7c-6.61,0-11.97,5.36-11.97,11.97v34.66c0,5.08-3.22,9.56-8,11.29&#10;&#9;&#9;c-5.88,2.13-11.64,4.52-17.26,7.16c-4.6,2.16-10.05,1.28-13.65-2.32l-24.52-24.52c-4.67-4.67-12.25-4.67-16.92,0l-69.09,69.09&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l24.52,24.52c3.6,3.6,4.48,9.05,2.32,13.65c-2.64,5.62-5.03,11.38-7.16,17.26&#10;&#9;&#9;c-1.73,4.78-6.21,8-11.29,8H19.47c-6.61,0-11.97,5.36-11.97,11.97v97.7c0,6.61,5.36,11.97,11.97,11.97h34.66&#10;&#9;&#9;c5.08,0,9.56,3.22,11.29,8c2.13,5.88,4.52,11.64,7.16,17.26c2.16,4.6,1.28,10.05-2.32,13.65l-24.52,24.52&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l69.09,69.09c4.67,4.67,12.25,4.67,16.92,0l24.52-24.52c3.6-3.6,9.05-4.48,13.65-2.32&#10;&#9;&#9;c5.62,2.64,11.38,5.03,17.26,7.16c4.78,1.73,8,6.21,8,11.29v34.66c0,6.61,5.36,11.97,11.97,11.97h97.7&#10;&#9;&#9;c6.61,0,11.97-5.36,11.97-11.97v-34.66c0-5.08,3.22-9.56,8-11.29c2.44-0.88,4.86-1.81,7.25-2.79\"></path>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M196.106,164.975c17.192-11.34,37.769-17.94,59.894-17.94c23.273,0,44.833,7.302,62.542,19.743&#10;&#9;&#9;c1.404,0.979,2.782,1.997,4.121,3.053c25.733,19.911,42.296,51.118,42.296,86.176c0,35.057-16.563,66.251-42.296,86.162&#10;&#9;&#9;c-1.339,1.069-2.717,2.087-4.121,3.065c-17.709,12.429-39.269,19.732-62.542,19.732s-44.833-7.302-62.542-19.732&#10;&#9;&#9;c-1.404-0.979-2.782-1.996-4.121-3.065c-25.733-19.911-42.296-51.105-42.296-86.162c0-25.325,8.643-48.641,23.143-67.14\"></path>	<g>		<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;&#9;M473.856,483.005c-15.5,13.394-35.701,21.495-57.794,21.495c-48.843,0-88.438-39.595-88.438-88.438s39.595-88.438,88.438-88.438&#10;&#9;&#9;&#9;s88.438,39.595,88.438,88.438c0,14.174-3.334,27.569-9.262,39.444\"></path>		<g>							<polyline style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"&#10;&#9;&#9;&#9;&#9;390.094,434.86 416.062,460.828 442.03,434.86 &#9;&#9;&#9;\"></polyline>							<line style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" x1=\"416.062\" y1=\"460.828\" x2=\"416.062\" y2=\"371.296\"></line>		</g>	</g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M249.556,230.899v40.202c0,2.209,1.791,4,4,4h26.889\"></path></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:12:18', '2025-11-25 10:12:18', '', 761, 'https://mrarif.me/secureswipesolutions/?p=779', 0, 'revision', '', 0),
(780, 1, '2025-11-25 10:12:18', '2025-11-25 10:12:18', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\" width=\"512\" height=\"512\"><g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M443.79,332.07c0.98-2.39,1.91-4.81,2.79-7.25c1.73-4.78,6.21-8,11.29-8h34.66c6.61,0,11.97-5.36,11.97-11.97v-97.7&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-34.66c-5.08,0-9.56-3.22-11.29-8c-2.13-5.88-4.52-11.64-7.16-17.26&#10;&#9;&#9;c-2.16-4.6-1.28-10.05,2.32-13.65l24.52-24.52c4.67-4.67,4.67-12.25,0-16.92l-69.09-69.09c-4.67-4.67-12.25-4.67-16.92,0&#10;&#9;&#9;l-24.52,24.52c-3.6,3.6-9.05,4.48-13.65,2.32c-5.62-2.64-11.38-5.03-17.26-7.16c-4.78-1.73-8-6.21-8-11.29V19.47&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-97.7c-6.61,0-11.97,5.36-11.97,11.97v34.66c0,5.08-3.22,9.56-8,11.29&#10;&#9;&#9;c-5.88,2.13-11.64,4.52-17.26,7.16c-4.6,2.16-10.05,1.28-13.65-2.32l-24.52-24.52c-4.67-4.67-12.25-4.67-16.92,0l-69.09,69.09&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l24.52,24.52c3.6,3.6,4.48,9.05,2.32,13.65c-2.64,5.62-5.03,11.38-7.16,17.26&#10;&#9;&#9;c-1.73,4.78-6.21,8-11.29,8H19.47c-6.61,0-11.97,5.36-11.97,11.97v97.7c0,6.61,5.36,11.97,11.97,11.97h34.66&#10;&#9;&#9;c5.08,0,9.56,3.22,11.29,8c2.13,5.88,4.52,11.64,7.16,17.26c2.16,4.6,1.28,10.05-2.32,13.65l-24.52,24.52&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l69.09,69.09c4.67,4.67,12.25,4.67,16.92,0l24.52-24.52c3.6-3.6,9.05-4.48,13.65-2.32&#10;&#9;&#9;c5.62,2.64,11.38,5.03,17.26,7.16c4.78,1.73,8,6.21,8,11.29v34.66c0,6.61,5.36,11.97,11.97,11.97h97.7&#10;&#9;&#9;c6.61,0,11.97-5.36,11.97-11.97v-34.66c0-5.08,3.22-9.56,8-11.29c2.44-0.88,4.86-1.81,7.25-2.79\"></path>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M196.106,164.975c17.192-11.34,37.769-17.94,59.894-17.94c23.273,0,44.833,7.302,62.542,19.743&#10;&#9;&#9;c1.404,0.979,2.782,1.997,4.121,3.053c25.733,19.911,42.296,51.118,42.296,86.176c0,35.057-16.563,66.251-42.296,86.162&#10;&#9;&#9;c-1.339,1.069-2.717,2.087-4.121,3.065c-17.709,12.429-39.269,19.732-62.542,19.732s-44.833-7.302-62.542-19.732&#10;&#9;&#9;c-1.404-0.979-2.782-1.996-4.121-3.065c-25.733-19.911-42.296-51.105-42.296-86.162c0-25.325,8.643-48.641,23.143-67.14\"></path>	<g>		<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;&#9;M473.856,483.005c-15.5,13.394-35.701,21.495-57.794,21.495c-48.843,0-88.438-39.595-88.438-88.438s39.595-88.438,88.438-88.438&#10;&#9;&#9;&#9;s88.438,39.595,88.438,88.438c0,14.174-3.334,27.569-9.262,39.444\"></path>		<g>							<polyline style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"&#10;&#9;&#9;&#9;&#9;390.094,434.86 416.062,460.828 442.03,434.86 &#9;&#9;&#9;\"></polyline>							<line style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" x1=\"416.062\" y1=\"460.828\" x2=\"416.062\" y2=\"371.296\"></line>		</g>	</g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M249.556,230.899v40.202c0,2.209,1.791,4,4,4h26.889\"></path></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:12:18', '2025-11-25 10:12:18', '', 761, 'https://mrarif.me/secureswipesolutions/?p=780', 0, 'revision', '', 0),
(781, 1, '2025-11-25 10:12:18', '2025-11-25 10:12:18', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\" width=\"512\" height=\"512\"><g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M443.79,332.07c0.98-2.39,1.91-4.81,2.79-7.25c1.73-4.78,6.21-8,11.29-8h34.66c6.61,0,11.97-5.36,11.97-11.97v-97.7&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-34.66c-5.08,0-9.56-3.22-11.29-8c-2.13-5.88-4.52-11.64-7.16-17.26&#10;&#9;&#9;c-2.16-4.6-1.28-10.05,2.32-13.65l24.52-24.52c4.67-4.67,4.67-12.25,0-16.92l-69.09-69.09c-4.67-4.67-12.25-4.67-16.92,0&#10;&#9;&#9;l-24.52,24.52c-3.6,3.6-9.05,4.48-13.65,2.32c-5.62-2.64-11.38-5.03-17.26-7.16c-4.78-1.73-8-6.21-8-11.29V19.47&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-97.7c-6.61,0-11.97,5.36-11.97,11.97v34.66c0,5.08-3.22,9.56-8,11.29&#10;&#9;&#9;c-5.88,2.13-11.64,4.52-17.26,7.16c-4.6,2.16-10.05,1.28-13.65-2.32l-24.52-24.52c-4.67-4.67-12.25-4.67-16.92,0l-69.09,69.09&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l24.52,24.52c3.6,3.6,4.48,9.05,2.32,13.65c-2.64,5.62-5.03,11.38-7.16,17.26&#10;&#9;&#9;c-1.73,4.78-6.21,8-11.29,8H19.47c-6.61,0-11.97,5.36-11.97,11.97v97.7c0,6.61,5.36,11.97,11.97,11.97h34.66&#10;&#9;&#9;c5.08,0,9.56,3.22,11.29,8c2.13,5.88,4.52,11.64,7.16,17.26c2.16,4.6,1.28,10.05-2.32,13.65l-24.52,24.52&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l69.09,69.09c4.67,4.67,12.25,4.67,16.92,0l24.52-24.52c3.6-3.6,9.05-4.48,13.65-2.32&#10;&#9;&#9;c5.62,2.64,11.38,5.03,17.26,7.16c4.78,1.73,8,6.21,8,11.29v34.66c0,6.61,5.36,11.97,11.97,11.97h97.7&#10;&#9;&#9;c6.61,0,11.97-5.36,11.97-11.97v-34.66c0-5.08,3.22-9.56,8-11.29c2.44-0.88,4.86-1.81,7.25-2.79\"></path>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M196.106,164.975c17.192-11.34,37.769-17.94,59.894-17.94c23.273,0,44.833,7.302,62.542,19.743&#10;&#9;&#9;c1.404,0.979,2.782,1.997,4.121,3.053c25.733,19.911,42.296,51.118,42.296,86.176c0,35.057-16.563,66.251-42.296,86.162&#10;&#9;&#9;c-1.339,1.069-2.717,2.087-4.121,3.065c-17.709,12.429-39.269,19.732-62.542,19.732s-44.833-7.302-62.542-19.732&#10;&#9;&#9;c-1.404-0.979-2.782-1.996-4.121-3.065c-25.733-19.911-42.296-51.105-42.296-86.162c0-25.325,8.643-48.641,23.143-67.14\"></path>	<g>		<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;&#9;M473.856,483.005c-15.5,13.394-35.701,21.495-57.794,21.495c-48.843,0-88.438-39.595-88.438-88.438s39.595-88.438,88.438-88.438&#10;&#9;&#9;&#9;s88.438,39.595,88.438,88.438c0,14.174-3.334,27.569-9.262,39.444\"></path>		<g>							<polyline style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"&#10;&#9;&#9;&#9;&#9;390.094,434.86 416.062,460.828 442.03,434.86 &#9;&#9;&#9;\"></polyline>							<line style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" x1=\"416.062\" y1=\"460.828\" x2=\"416.062\" y2=\"371.296\"></line>		</g>	</g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M249.556,230.899v40.202c0,2.209,1.791,4,4,4h26.889\"></path></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:12:18', '2025-11-25 10:12:18', '', 761, 'https://mrarif.me/secureswipesolutions/?p=781', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(782, 1, '2025-11-25 10:13:25', '2025-11-25 10:13:25', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\" width=\"512\" height=\"512\"><g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M443.79,332.07c0.98-2.39,1.91-4.81,2.79-7.25c1.73-4.78,6.21-8,11.29-8h34.66c6.61,0,11.97-5.36,11.97-11.97v-97.7&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-34.66c-5.08,0-9.56-3.22-11.29-8c-2.13-5.88-4.52-11.64-7.16-17.26&#10;&#9;&#9;c-2.16-4.6-1.28-10.05,2.32-13.65l24.52-24.52c4.67-4.67,4.67-12.25,0-16.92l-69.09-69.09c-4.67-4.67-12.25-4.67-16.92,0&#10;&#9;&#9;l-24.52,24.52c-3.6,3.6-9.05,4.48-13.65,2.32c-5.62-2.64-11.38-5.03-17.26-7.16c-4.78-1.73-8-6.21-8-11.29V19.47&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-97.7c-6.61,0-11.97,5.36-11.97,11.97v34.66c0,5.08-3.22,9.56-8,11.29&#10;&#9;&#9;c-5.88,2.13-11.64,4.52-17.26,7.16c-4.6,2.16-10.05,1.28-13.65-2.32l-24.52-24.52c-4.67-4.67-12.25-4.67-16.92,0l-69.09,69.09&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l24.52,24.52c3.6,3.6,4.48,9.05,2.32,13.65c-2.64,5.62-5.03,11.38-7.16,17.26&#10;&#9;&#9;c-1.73,4.78-6.21,8-11.29,8H19.47c-6.61,0-11.97,5.36-11.97,11.97v97.7c0,6.61,5.36,11.97,11.97,11.97h34.66&#10;&#9;&#9;c5.08,0,9.56,3.22,11.29,8c2.13,5.88,4.52,11.64,7.16,17.26c2.16,4.6,1.28,10.05-2.32,13.65l-24.52,24.52&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l69.09,69.09c4.67,4.67,12.25,4.67,16.92,0l24.52-24.52c3.6-3.6,9.05-4.48,13.65-2.32&#10;&#9;&#9;c5.62,2.64,11.38,5.03,17.26,7.16c4.78,1.73,8,6.21,8,11.29v34.66c0,6.61,5.36,11.97,11.97,11.97h97.7&#10;&#9;&#9;c6.61,0,11.97-5.36,11.97-11.97v-34.66c0-5.08,3.22-9.56,8-11.29c2.44-0.88,4.86-1.81,7.25-2.79\"></path>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M196.106,164.975c17.192-11.34,37.769-17.94,59.894-17.94c23.273,0,44.833,7.302,62.542,19.743&#10;&#9;&#9;c1.404,0.979,2.782,1.997,4.121,3.053c25.733,19.911,42.296,51.118,42.296,86.176c0,35.057-16.563,66.251-42.296,86.162&#10;&#9;&#9;c-1.339,1.069-2.717,2.087-4.121,3.065c-17.709,12.429-39.269,19.732-62.542,19.732s-44.833-7.302-62.542-19.732&#10;&#9;&#9;c-1.404-0.979-2.782-1.996-4.121-3.065c-25.733-19.911-42.296-51.105-42.296-86.162c0-25.325,8.643-48.641,23.143-67.14\"></path>	<g>		<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;&#9;M473.856,483.005c-15.5,13.394-35.701,21.495-57.794,21.495c-48.843,0-88.438-39.595-88.438-88.438s39.595-88.438,88.438-88.438&#10;&#9;&#9;&#9;s88.438,39.595,88.438,88.438c0,14.174-3.334,27.569-9.262,39.444\"></path>		<g>							<polyline style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"&#10;&#9;&#9;&#9;&#9;390.094,434.86 416.062,460.828 442.03,434.86 &#9;&#9;&#9;\"></polyline>							<line style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" x1=\"416.062\" y1=\"460.828\" x2=\"416.062\" y2=\"371.296\"></line>		</g>	</g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M249.556,230.899v40.202c0,2.209,1.791,4,4,4h26.889\"></path></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:13:25', '2025-11-25 10:13:25', '', 761, 'https://mrarif.me/secureswipesolutions/?p=782', 0, 'revision', '', 0),
(783, 1, '2025-11-25 10:13:25', '2025-11-25 10:13:25', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\" width=\"512\" height=\"512\"><g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M443.79,332.07c0.98-2.39,1.91-4.81,2.79-7.25c1.73-4.78,6.21-8,11.29-8h34.66c6.61,0,11.97-5.36,11.97-11.97v-97.7&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-34.66c-5.08,0-9.56-3.22-11.29-8c-2.13-5.88-4.52-11.64-7.16-17.26&#10;&#9;&#9;c-2.16-4.6-1.28-10.05,2.32-13.65l24.52-24.52c4.67-4.67,4.67-12.25,0-16.92l-69.09-69.09c-4.67-4.67-12.25-4.67-16.92,0&#10;&#9;&#9;l-24.52,24.52c-3.6,3.6-9.05,4.48-13.65,2.32c-5.62-2.64-11.38-5.03-17.26-7.16c-4.78-1.73-8-6.21-8-11.29V19.47&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-97.7c-6.61,0-11.97,5.36-11.97,11.97v34.66c0,5.08-3.22,9.56-8,11.29&#10;&#9;&#9;c-5.88,2.13-11.64,4.52-17.26,7.16c-4.6,2.16-10.05,1.28-13.65-2.32l-24.52-24.52c-4.67-4.67-12.25-4.67-16.92,0l-69.09,69.09&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l24.52,24.52c3.6,3.6,4.48,9.05,2.32,13.65c-2.64,5.62-5.03,11.38-7.16,17.26&#10;&#9;&#9;c-1.73,4.78-6.21,8-11.29,8H19.47c-6.61,0-11.97,5.36-11.97,11.97v97.7c0,6.61,5.36,11.97,11.97,11.97h34.66&#10;&#9;&#9;c5.08,0,9.56,3.22,11.29,8c2.13,5.88,4.52,11.64,7.16,17.26c2.16,4.6,1.28,10.05-2.32,13.65l-24.52,24.52&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l69.09,69.09c4.67,4.67,12.25,4.67,16.92,0l24.52-24.52c3.6-3.6,9.05-4.48,13.65-2.32&#10;&#9;&#9;c5.62,2.64,11.38,5.03,17.26,7.16c4.78,1.73,8,6.21,8,11.29v34.66c0,6.61,5.36,11.97,11.97,11.97h97.7&#10;&#9;&#9;c6.61,0,11.97-5.36,11.97-11.97v-34.66c0-5.08,3.22-9.56,8-11.29c2.44-0.88,4.86-1.81,7.25-2.79\"></path>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M196.106,164.975c17.192-11.34,37.769-17.94,59.894-17.94c23.273,0,44.833,7.302,62.542,19.743&#10;&#9;&#9;c1.404,0.979,2.782,1.997,4.121,3.053c25.733,19.911,42.296,51.118,42.296,86.176c0,35.057-16.563,66.251-42.296,86.162&#10;&#9;&#9;c-1.339,1.069-2.717,2.087-4.121,3.065c-17.709,12.429-39.269,19.732-62.542,19.732s-44.833-7.302-62.542-19.732&#10;&#9;&#9;c-1.404-0.979-2.782-1.996-4.121-3.065c-25.733-19.911-42.296-51.105-42.296-86.162c0-25.325,8.643-48.641,23.143-67.14\"></path>	<g>		<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;&#9;M473.856,483.005c-15.5,13.394-35.701,21.495-57.794,21.495c-48.843,0-88.438-39.595-88.438-88.438s39.595-88.438,88.438-88.438&#10;&#9;&#9;&#9;s88.438,39.595,88.438,88.438c0,14.174-3.334,27.569-9.262,39.444\"></path>		<g>							<polyline style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"&#10;&#9;&#9;&#9;&#9;390.094,434.86 416.062,460.828 442.03,434.86 &#9;&#9;&#9;\"></polyline>							<line style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" x1=\"416.062\" y1=\"460.828\" x2=\"416.062\" y2=\"371.296\"></line>		</g>	</g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M249.556,230.899v40.202c0,2.209,1.791,4,4,4h26.889\"></path></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:13:25', '2025-11-25 10:13:25', '', 761, 'https://mrarif.me/secureswipesolutions/?p=783', 0, 'revision', '', 0),
(784, 1, '2025-11-25 10:13:25', '2025-11-25 10:13:25', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\" width=\"512\" height=\"512\"><g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M443.79,332.07c0.98-2.39,1.91-4.81,2.79-7.25c1.73-4.78,6.21-8,11.29-8h34.66c6.61,0,11.97-5.36,11.97-11.97v-97.7&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-34.66c-5.08,0-9.56-3.22-11.29-8c-2.13-5.88-4.52-11.64-7.16-17.26&#10;&#9;&#9;c-2.16-4.6-1.28-10.05,2.32-13.65l24.52-24.52c4.67-4.67,4.67-12.25,0-16.92l-69.09-69.09c-4.67-4.67-12.25-4.67-16.92,0&#10;&#9;&#9;l-24.52,24.52c-3.6,3.6-9.05,4.48-13.65,2.32c-5.62-2.64-11.38-5.03-17.26-7.16c-4.78-1.73-8-6.21-8-11.29V19.47&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-97.7c-6.61,0-11.97,5.36-11.97,11.97v34.66c0,5.08-3.22,9.56-8,11.29&#10;&#9;&#9;c-5.88,2.13-11.64,4.52-17.26,7.16c-4.6,2.16-10.05,1.28-13.65-2.32l-24.52-24.52c-4.67-4.67-12.25-4.67-16.92,0l-69.09,69.09&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l24.52,24.52c3.6,3.6,4.48,9.05,2.32,13.65c-2.64,5.62-5.03,11.38-7.16,17.26&#10;&#9;&#9;c-1.73,4.78-6.21,8-11.29,8H19.47c-6.61,0-11.97,5.36-11.97,11.97v97.7c0,6.61,5.36,11.97,11.97,11.97h34.66&#10;&#9;&#9;c5.08,0,9.56,3.22,11.29,8c2.13,5.88,4.52,11.64,7.16,17.26c2.16,4.6,1.28,10.05-2.32,13.65l-24.52,24.52&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l69.09,69.09c4.67,4.67,12.25,4.67,16.92,0l24.52-24.52c3.6-3.6,9.05-4.48,13.65-2.32&#10;&#9;&#9;c5.62,2.64,11.38,5.03,17.26,7.16c4.78,1.73,8,6.21,8,11.29v34.66c0,6.61,5.36,11.97,11.97,11.97h97.7&#10;&#9;&#9;c6.61,0,11.97-5.36,11.97-11.97v-34.66c0-5.08,3.22-9.56,8-11.29c2.44-0.88,4.86-1.81,7.25-2.79\"></path>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M196.106,164.975c17.192-11.34,37.769-17.94,59.894-17.94c23.273,0,44.833,7.302,62.542,19.743&#10;&#9;&#9;c1.404,0.979,2.782,1.997,4.121,3.053c25.733,19.911,42.296,51.118,42.296,86.176c0,35.057-16.563,66.251-42.296,86.162&#10;&#9;&#9;c-1.339,1.069-2.717,2.087-4.121,3.065c-17.709,12.429-39.269,19.732-62.542,19.732s-44.833-7.302-62.542-19.732&#10;&#9;&#9;c-1.404-0.979-2.782-1.996-4.121-3.065c-25.733-19.911-42.296-51.105-42.296-86.162c0-25.325,8.643-48.641,23.143-67.14\"></path>	<g>		<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;&#9;M473.856,483.005c-15.5,13.394-35.701,21.495-57.794,21.495c-48.843,0-88.438-39.595-88.438-88.438s39.595-88.438,88.438-88.438&#10;&#9;&#9;&#9;s88.438,39.595,88.438,88.438c0,14.174-3.334,27.569-9.262,39.444\"></path>		<g>							<polyline style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"&#10;&#9;&#9;&#9;&#9;390.094,434.86 416.062,460.828 442.03,434.86 &#9;&#9;&#9;\"></polyline>							<line style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" x1=\"416.062\" y1=\"460.828\" x2=\"416.062\" y2=\"371.296\"></line>		</g>	</g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M249.556,230.899v40.202c0,2.209,1.791,4,4,4h26.889\"></path></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:13:25', '2025-11-25 10:13:25', '', 761, 'https://mrarif.me/secureswipesolutions/?p=784', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(785, 1, '2025-11-25 10:13:57', '2025-11-25 10:13:57', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\" width=\"512\" height=\"512\"><g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M443.79,332.07c0.98-2.39,1.91-4.81,2.79-7.25c1.73-4.78,6.21-8,11.29-8h34.66c6.61,0,11.97-5.36,11.97-11.97v-97.7&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-34.66c-5.08,0-9.56-3.22-11.29-8c-2.13-5.88-4.52-11.64-7.16-17.26&#10;&#9;&#9;c-2.16-4.6-1.28-10.05,2.32-13.65l24.52-24.52c4.67-4.67,4.67-12.25,0-16.92l-69.09-69.09c-4.67-4.67-12.25-4.67-16.92,0&#10;&#9;&#9;l-24.52,24.52c-3.6,3.6-9.05,4.48-13.65,2.32c-5.62-2.64-11.38-5.03-17.26-7.16c-4.78-1.73-8-6.21-8-11.29V19.47&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-97.7c-6.61,0-11.97,5.36-11.97,11.97v34.66c0,5.08-3.22,9.56-8,11.29&#10;&#9;&#9;c-5.88,2.13-11.64,4.52-17.26,7.16c-4.6,2.16-10.05,1.28-13.65-2.32l-24.52-24.52c-4.67-4.67-12.25-4.67-16.92,0l-69.09,69.09&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l24.52,24.52c3.6,3.6,4.48,9.05,2.32,13.65c-2.64,5.62-5.03,11.38-7.16,17.26&#10;&#9;&#9;c-1.73,4.78-6.21,8-11.29,8H19.47c-6.61,0-11.97,5.36-11.97,11.97v97.7c0,6.61,5.36,11.97,11.97,11.97h34.66&#10;&#9;&#9;c5.08,0,9.56,3.22,11.29,8c2.13,5.88,4.52,11.64,7.16,17.26c2.16,4.6,1.28,10.05-2.32,13.65l-24.52,24.52&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l69.09,69.09c4.67,4.67,12.25,4.67,16.92,0l24.52-24.52c3.6-3.6,9.05-4.48,13.65-2.32&#10;&#9;&#9;c5.62,2.64,11.38,5.03,17.26,7.16c4.78,1.73,8,6.21,8,11.29v34.66c0,6.61,5.36,11.97,11.97,11.97h97.7&#10;&#9;&#9;c6.61,0,11.97-5.36,11.97-11.97v-34.66c0-5.08,3.22-9.56,8-11.29c2.44-0.88,4.86-1.81,7.25-2.79\"></path>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M196.106,164.975c17.192-11.34,37.769-17.94,59.894-17.94c23.273,0,44.833,7.302,62.542,19.743&#10;&#9;&#9;c1.404,0.979,2.782,1.997,4.121,3.053c25.733,19.911,42.296,51.118,42.296,86.176c0,35.057-16.563,66.251-42.296,86.162&#10;&#9;&#9;c-1.339,1.069-2.717,2.087-4.121,3.065c-17.709,12.429-39.269,19.732-62.542,19.732s-44.833-7.302-62.542-19.732&#10;&#9;&#9;c-1.404-0.979-2.782-1.996-4.121-3.065c-25.733-19.911-42.296-51.105-42.296-86.162c0-25.325,8.643-48.641,23.143-67.14\"></path>	<g>		<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;&#9;M473.856,483.005c-15.5,13.394-35.701,21.495-57.794,21.495c-48.843,0-88.438-39.595-88.438-88.438s39.595-88.438,88.438-88.438&#10;&#9;&#9;&#9;s88.438,39.595,88.438,88.438c0,14.174-3.334,27.569-9.262,39.444\"></path>		<g>							<polyline style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"&#10;&#9;&#9;&#9;&#9;390.094,434.86 416.062,460.828 442.03,434.86 &#9;&#9;&#9;\"></polyline>							<line style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" x1=\"416.062\" y1=\"460.828\" x2=\"416.062\" y2=\"371.296\"></line>		</g>	</g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M249.556,230.899v40.202c0,2.209,1.791,4,4,4h26.889\"></path></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:13:57', '2025-11-25 10:13:57', '', 761, 'https://mrarif.me/secureswipesolutions/?p=785', 0, 'revision', '', 0),
(786, 1, '2025-11-25 10:13:57', '2025-11-25 10:13:57', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\" width=\"512\" height=\"512\"><g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M443.79,332.07c0.98-2.39,1.91-4.81,2.79-7.25c1.73-4.78,6.21-8,11.29-8h34.66c6.61,0,11.97-5.36,11.97-11.97v-97.7&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-34.66c-5.08,0-9.56-3.22-11.29-8c-2.13-5.88-4.52-11.64-7.16-17.26&#10;&#9;&#9;c-2.16-4.6-1.28-10.05,2.32-13.65l24.52-24.52c4.67-4.67,4.67-12.25,0-16.92l-69.09-69.09c-4.67-4.67-12.25-4.67-16.92,0&#10;&#9;&#9;l-24.52,24.52c-3.6,3.6-9.05,4.48-13.65,2.32c-5.62-2.64-11.38-5.03-17.26-7.16c-4.78-1.73-8-6.21-8-11.29V19.47&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-97.7c-6.61,0-11.97,5.36-11.97,11.97v34.66c0,5.08-3.22,9.56-8,11.29&#10;&#9;&#9;c-5.88,2.13-11.64,4.52-17.26,7.16c-4.6,2.16-10.05,1.28-13.65-2.32l-24.52-24.52c-4.67-4.67-12.25-4.67-16.92,0l-69.09,69.09&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l24.52,24.52c3.6,3.6,4.48,9.05,2.32,13.65c-2.64,5.62-5.03,11.38-7.16,17.26&#10;&#9;&#9;c-1.73,4.78-6.21,8-11.29,8H19.47c-6.61,0-11.97,5.36-11.97,11.97v97.7c0,6.61,5.36,11.97,11.97,11.97h34.66&#10;&#9;&#9;c5.08,0,9.56,3.22,11.29,8c2.13,5.88,4.52,11.64,7.16,17.26c2.16,4.6,1.28,10.05-2.32,13.65l-24.52,24.52&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l69.09,69.09c4.67,4.67,12.25,4.67,16.92,0l24.52-24.52c3.6-3.6,9.05-4.48,13.65-2.32&#10;&#9;&#9;c5.62,2.64,11.38,5.03,17.26,7.16c4.78,1.73,8,6.21,8,11.29v34.66c0,6.61,5.36,11.97,11.97,11.97h97.7&#10;&#9;&#9;c6.61,0,11.97-5.36,11.97-11.97v-34.66c0-5.08,3.22-9.56,8-11.29c2.44-0.88,4.86-1.81,7.25-2.79\"></path>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M196.106,164.975c17.192-11.34,37.769-17.94,59.894-17.94c23.273,0,44.833,7.302,62.542,19.743&#10;&#9;&#9;c1.404,0.979,2.782,1.997,4.121,3.053c25.733,19.911,42.296,51.118,42.296,86.176c0,35.057-16.563,66.251-42.296,86.162&#10;&#9;&#9;c-1.339,1.069-2.717,2.087-4.121,3.065c-17.709,12.429-39.269,19.732-62.542,19.732s-44.833-7.302-62.542-19.732&#10;&#9;&#9;c-1.404-0.979-2.782-1.996-4.121-3.065c-25.733-19.911-42.296-51.105-42.296-86.162c0-25.325,8.643-48.641,23.143-67.14\"></path>	<g>		<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;&#9;M473.856,483.005c-15.5,13.394-35.701,21.495-57.794,21.495c-48.843,0-88.438-39.595-88.438-88.438s39.595-88.438,88.438-88.438&#10;&#9;&#9;&#9;s88.438,39.595,88.438,88.438c0,14.174-3.334,27.569-9.262,39.444\"></path>		<g>							<polyline style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"&#10;&#9;&#9;&#9;&#9;390.094,434.86 416.062,460.828 442.03,434.86 &#9;&#9;&#9;\"></polyline>							<line style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" x1=\"416.062\" y1=\"460.828\" x2=\"416.062\" y2=\"371.296\"></line>		</g>	</g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M249.556,230.899v40.202c0,2.209,1.791,4,4,4h26.889\"></path></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:13:57', '2025-11-25 10:13:57', '', 761, 'https://mrarif.me/secureswipesolutions/?p=786', 0, 'revision', '', 0),
(787, 1, '2025-11-25 10:13:57', '2025-11-25 10:13:57', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\" width=\"512\" height=\"512\"><g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M443.79,332.07c0.98-2.39,1.91-4.81,2.79-7.25c1.73-4.78,6.21-8,11.29-8h34.66c6.61,0,11.97-5.36,11.97-11.97v-97.7&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-34.66c-5.08,0-9.56-3.22-11.29-8c-2.13-5.88-4.52-11.64-7.16-17.26&#10;&#9;&#9;c-2.16-4.6-1.28-10.05,2.32-13.65l24.52-24.52c4.67-4.67,4.67-12.25,0-16.92l-69.09-69.09c-4.67-4.67-12.25-4.67-16.92,0&#10;&#9;&#9;l-24.52,24.52c-3.6,3.6-9.05,4.48-13.65,2.32c-5.62-2.64-11.38-5.03-17.26-7.16c-4.78-1.73-8-6.21-8-11.29V19.47&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-97.7c-6.61,0-11.97,5.36-11.97,11.97v34.66c0,5.08-3.22,9.56-8,11.29&#10;&#9;&#9;c-5.88,2.13-11.64,4.52-17.26,7.16c-4.6,2.16-10.05,1.28-13.65-2.32l-24.52-24.52c-4.67-4.67-12.25-4.67-16.92,0l-69.09,69.09&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l24.52,24.52c3.6,3.6,4.48,9.05,2.32,13.65c-2.64,5.62-5.03,11.38-7.16,17.26&#10;&#9;&#9;c-1.73,4.78-6.21,8-11.29,8H19.47c-6.61,0-11.97,5.36-11.97,11.97v97.7c0,6.61,5.36,11.97,11.97,11.97h34.66&#10;&#9;&#9;c5.08,0,9.56,3.22,11.29,8c2.13,5.88,4.52,11.64,7.16,17.26c2.16,4.6,1.28,10.05-2.32,13.65l-24.52,24.52&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l69.09,69.09c4.67,4.67,12.25,4.67,16.92,0l24.52-24.52c3.6-3.6,9.05-4.48,13.65-2.32&#10;&#9;&#9;c5.62,2.64,11.38,5.03,17.26,7.16c4.78,1.73,8,6.21,8,11.29v34.66c0,6.61,5.36,11.97,11.97,11.97h97.7&#10;&#9;&#9;c6.61,0,11.97-5.36,11.97-11.97v-34.66c0-5.08,3.22-9.56,8-11.29c2.44-0.88,4.86-1.81,7.25-2.79\"></path>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M196.106,164.975c17.192-11.34,37.769-17.94,59.894-17.94c23.273,0,44.833,7.302,62.542,19.743&#10;&#9;&#9;c1.404,0.979,2.782,1.997,4.121,3.053c25.733,19.911,42.296,51.118,42.296,86.176c0,35.057-16.563,66.251-42.296,86.162&#10;&#9;&#9;c-1.339,1.069-2.717,2.087-4.121,3.065c-17.709,12.429-39.269,19.732-62.542,19.732s-44.833-7.302-62.542-19.732&#10;&#9;&#9;c-1.404-0.979-2.782-1.996-4.121-3.065c-25.733-19.911-42.296-51.105-42.296-86.162c0-25.325,8.643-48.641,23.143-67.14\"></path>	<g>		<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;&#9;M473.856,483.005c-15.5,13.394-35.701,21.495-57.794,21.495c-48.843,0-88.438-39.595-88.438-88.438s39.595-88.438,88.438-88.438&#10;&#9;&#9;&#9;s88.438,39.595,88.438,88.438c0,14.174-3.334,27.569-9.262,39.444\"></path>		<g>							<polyline style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"&#10;&#9;&#9;&#9;&#9;390.094,434.86 416.062,460.828 442.03,434.86 &#9;&#9;&#9;\"></polyline>							<line style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" x1=\"416.062\" y1=\"460.828\" x2=\"416.062\" y2=\"371.296\"></line>		</g>	</g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M249.556,230.899v40.202c0,2.209,1.791,4,4,4h26.889\"></path></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:13:57', '2025-11-25 10:13:57', '', 761, 'https://mrarif.me/secureswipesolutions/?p=787', 0, 'revision', '', 0),
(788, 1, '2025-11-25 10:19:34', '2025-11-25 10:19:34', '', 'efficiency_10277836', '', 'inherit', 'open', 'closed', '', 'efficiency_10277836', '', '', '2025-11-25 10:19:34', '2025-11-25 10:19:34', '', 761, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/efficiency_10277836.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(793, 1, '2025-11-25 10:22:01', '2025-11-25 10:22:01', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svg=\"http://www.w3.org/2000/svg\" id=\"svg2544\" xml:space=\"preserve\" width=\"682.66669\" height=\"682.66669\" viewBox=\"0 0 682.66669 682.66669\"><defs id=\"defs2548\"><clipPath clipPathUnits=\"userSpaceOnUse\" id=\"clipPath2558\"><path d=\"M 0,512 H 512 V 0 H 0 Z\" id=\"path2556\"></path></clipPath></defs><g id=\"g2550\" transform=\"matrix(1.3333333,0,0,-1.3333333,0,682.66667)\"><g id=\"g2552\"><g id=\"g2554\" clip-path=\"url(#clipPath2558)\"><g id=\"g2560\" transform=\"translate(336.0366,72.0117)\"><path d=\"m 0,0 c -12.303,-5.981 -25.285,-10.772 -38.778,-14.23 v -21.884 c 0,-10.432 -8.561,-18.965 -18.993,-18.965 h -63.411 c -10.46,0 -18.992,8.533 -18.992,18.965 v 21.884 c -19.077,4.876 -37.077,12.416 -53.603,22.224 l -15.477,-15.477 c -7.399,-7.399 -19.475,-7.399 -26.845,0 l -44.844,44.845 c -7.398,7.37 -7.398,19.474 0,26.845 l 15.478,15.478 c -9.808,16.526 -17.348,34.526 -22.224,53.604 h -21.884 c -10.431,0 -18.964,8.561 -18.964,18.993 v 63.413 c 0,10.46 8.533,18.992 18.964,18.992 h 21.884 c 4.876,19.078 12.416,37.079 22.224,53.605 l -15.478,15.478 c -7.398,7.398 -7.398,19.475 0,26.845 l 44.844,44.845 c 7.37,7.399 19.446,7.399 26.845,0 l 15.477,-15.478 c 16.526,9.809 34.526,17.349 53.603,22.225 v 21.884 c 0,10.432 8.532,18.964 18.992,18.964 h 63.411 c 10.432,0 18.993,-8.532 18.993,-18.964 v -21.884 c 19.077,-4.876 37.077,-12.416 53.603,-22.225 l 15.477,15.478 c 7.37,7.399 19.474,7.399 26.844,0 l 44.845,-44.845 c 7.398,-7.37 7.398,-19.447 0,-26.845 L 86.514,288.292 c 9.807,-16.526 17.348,-34.527 22.223,-53.605 h 21.884 c 10.431,0 18.963,-8.532 18.963,-18.992 v -63.413 c 0,-8.448 -5.584,-15.648 -13.237,-18.086\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2562\"></path></g><g id=\"g2564\" transform=\"translate(152.8896,364.5278)\"><path d=\"m 0,0 c -30.444,-26.278 -49.692,-65.142 -49.692,-108.514 0,-79.202 64.177,-143.381 143.349,-143.381 23.981,0 46.545,5.869 66.387,16.272 m 74.268,99.159 c 1.786,9.043 2.722,18.369 2.722,27.95 0,79.174 -64.177,143.353 -143.377,143.353 -24.322,0 -47.225,-6.067 -67.295,-16.754\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2566\"></path></g><g id=\"g2568\" transform=\"translate(216.8394,115.7231)\"><path d=\"m 0,0 v 91.278 c -29.934,11.084 -51.393,39.97 -51.393,73.618 0,26.874 13.664,50.714 34.414,64.859 21.77,14.883 17.546,-8.617 17.546,-12.558 v -47.141 c 0,-16.498 12.926,-30.105 29.14,-31.211 16.214,1.106 29.14,14.713 29.14,31.211 v 47.141 c 0,3.941 -4.195,27.441 17.575,12.558 20.75,-14.145 34.413,-37.985 34.413,-64.859 0,-33.648 -21.459,-62.534 -51.393,-73.618 L 59.442,0\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2570\"></path></g><g id=\"g2572\" transform=\"translate(453.7314,49.9858)\"><path d=\"m 0,0 c -13.437,-7.172 -28.8,-11.254 -45.1,-11.254 -52.951,0 -95.867,42.918 -95.867,95.871 0,52.952 42.916,95.87 95.867,95.87 52.952,0 95.869,-42.918 95.869,-95.87 0,-24.464 -9.185,-46.773 -24.265,-63.725\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2574\"></path></g><g id=\"g2576\" transform=\"translate(397.7187,135.623)\"><path d=\"m 0,0 30.954,36.908 c 6.435,7.682 17.943,8.703 25.654,2.268 7.682,-6.435 8.702,-17.944 2.239,-25.654 l -42.69,-50.94 c -3.231,-3.884 -7.398,-6.039 -12.415,-6.463 -5.018,-0.426 -9.468,0.992 -13.324,4.252 l -24.009,20.381 c -7.654,6.492 -8.589,18.001 -2.126,25.655 6.491,7.654 18.029,8.589 25.654,2.126 z\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2578\"></path></g></g></g></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:22:01', '2025-11-25 10:22:01', '', 761, 'https://mrarif.me/secureswipesolutions/?p=793', 0, 'revision', '', 0),
(790, 1, '2025-11-25 10:21:54', '2025-11-25 10:21:54', '', 'easy-installation_4961619', '', 'inherit', 'open', 'closed', '', 'easy-installation_4961619', '', '', '2025-11-25 10:21:54', '2025-11-25 10:21:54', '', 761, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/easy-installation_4961619.svg', 0, 'attachment', 'image/svg+xml', 0),
(791, 1, '2025-11-25 10:22:01', '2025-11-25 10:22:01', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\" width=\"512\" height=\"512\"><g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M443.79,332.07c0.98-2.39,1.91-4.81,2.79-7.25c1.73-4.78,6.21-8,11.29-8h34.66c6.61,0,11.97-5.36,11.97-11.97v-97.7&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-34.66c-5.08,0-9.56-3.22-11.29-8c-2.13-5.88-4.52-11.64-7.16-17.26&#10;&#9;&#9;c-2.16-4.6-1.28-10.05,2.32-13.65l24.52-24.52c4.67-4.67,4.67-12.25,0-16.92l-69.09-69.09c-4.67-4.67-12.25-4.67-16.92,0&#10;&#9;&#9;l-24.52,24.52c-3.6,3.6-9.05,4.48-13.65,2.32c-5.62-2.64-11.38-5.03-17.26-7.16c-4.78-1.73-8-6.21-8-11.29V19.47&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-97.7c-6.61,0-11.97,5.36-11.97,11.97v34.66c0,5.08-3.22,9.56-8,11.29&#10;&#9;&#9;c-5.88,2.13-11.64,4.52-17.26,7.16c-4.6,2.16-10.05,1.28-13.65-2.32l-24.52-24.52c-4.67-4.67-12.25-4.67-16.92,0l-69.09,69.09&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l24.52,24.52c3.6,3.6,4.48,9.05,2.32,13.65c-2.64,5.62-5.03,11.38-7.16,17.26&#10;&#9;&#9;c-1.73,4.78-6.21,8-11.29,8H19.47c-6.61,0-11.97,5.36-11.97,11.97v97.7c0,6.61,5.36,11.97,11.97,11.97h34.66&#10;&#9;&#9;c5.08,0,9.56,3.22,11.29,8c2.13,5.88,4.52,11.64,7.16,17.26c2.16,4.6,1.28,10.05-2.32,13.65l-24.52,24.52&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l69.09,69.09c4.67,4.67,12.25,4.67,16.92,0l24.52-24.52c3.6-3.6,9.05-4.48,13.65-2.32&#10;&#9;&#9;c5.62,2.64,11.38,5.03,17.26,7.16c4.78,1.73,8,6.21,8,11.29v34.66c0,6.61,5.36,11.97,11.97,11.97h97.7&#10;&#9;&#9;c6.61,0,11.97-5.36,11.97-11.97v-34.66c0-5.08,3.22-9.56,8-11.29c2.44-0.88,4.86-1.81,7.25-2.79\"></path>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M196.106,164.975c17.192-11.34,37.769-17.94,59.894-17.94c23.273,0,44.833,7.302,62.542,19.743&#10;&#9;&#9;c1.404,0.979,2.782,1.997,4.121,3.053c25.733,19.911,42.296,51.118,42.296,86.176c0,35.057-16.563,66.251-42.296,86.162&#10;&#9;&#9;c-1.339,1.069-2.717,2.087-4.121,3.065c-17.709,12.429-39.269,19.732-62.542,19.732s-44.833-7.302-62.542-19.732&#10;&#9;&#9;c-1.404-0.979-2.782-1.996-4.121-3.065c-25.733-19.911-42.296-51.105-42.296-86.162c0-25.325,8.643-48.641,23.143-67.14\"></path>	<g>		<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;&#9;M473.856,483.005c-15.5,13.394-35.701,21.495-57.794,21.495c-48.843,0-88.438-39.595-88.438-88.438s39.595-88.438,88.438-88.438&#10;&#9;&#9;&#9;s88.438,39.595,88.438,88.438c0,14.174-3.334,27.569-9.262,39.444\"></path>		<g>							<polyline style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"&#10;&#9;&#9;&#9;&#9;390.094,434.86 416.062,460.828 442.03,434.86 &#9;&#9;&#9;\"></polyline>							<line style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" x1=\"416.062\" y1=\"460.828\" x2=\"416.062\" y2=\"371.296\"></line>		</g>	</g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M249.556,230.899v40.202c0,2.209,1.791,4,4,4h26.889\"></path></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:22:01', '2025-11-25 10:22:01', '', 761, 'https://mrarif.me/secureswipesolutions/?p=791', 0, 'revision', '', 0),
(792, 1, '2025-11-25 10:22:01', '2025-11-25 10:22:01', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\" width=\"512\" height=\"512\"><g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M443.79,332.07c0.98-2.39,1.91-4.81,2.79-7.25c1.73-4.78,6.21-8,11.29-8h34.66c6.61,0,11.97-5.36,11.97-11.97v-97.7&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-34.66c-5.08,0-9.56-3.22-11.29-8c-2.13-5.88-4.52-11.64-7.16-17.26&#10;&#9;&#9;c-2.16-4.6-1.28-10.05,2.32-13.65l24.52-24.52c4.67-4.67,4.67-12.25,0-16.92l-69.09-69.09c-4.67-4.67-12.25-4.67-16.92,0&#10;&#9;&#9;l-24.52,24.52c-3.6,3.6-9.05,4.48-13.65,2.32c-5.62-2.64-11.38-5.03-17.26-7.16c-4.78-1.73-8-6.21-8-11.29V19.47&#10;&#9;&#9;c0-6.61-5.36-11.97-11.97-11.97h-97.7c-6.61,0-11.97,5.36-11.97,11.97v34.66c0,5.08-3.22,9.56-8,11.29&#10;&#9;&#9;c-5.88,2.13-11.64,4.52-17.26,7.16c-4.6,2.16-10.05,1.28-13.65-2.32l-24.52-24.52c-4.67-4.67-12.25-4.67-16.92,0l-69.09,69.09&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l24.52,24.52c3.6,3.6,4.48,9.05,2.32,13.65c-2.64,5.62-5.03,11.38-7.16,17.26&#10;&#9;&#9;c-1.73,4.78-6.21,8-11.29,8H19.47c-6.61,0-11.97,5.36-11.97,11.97v97.7c0,6.61,5.36,11.97,11.97,11.97h34.66&#10;&#9;&#9;c5.08,0,9.56,3.22,11.29,8c2.13,5.88,4.52,11.64,7.16,17.26c2.16,4.6,1.28,10.05-2.32,13.65l-24.52,24.52&#10;&#9;&#9;c-4.67,4.67-4.67,12.25,0,16.92l69.09,69.09c4.67,4.67,12.25,4.67,16.92,0l24.52-24.52c3.6-3.6,9.05-4.48,13.65-2.32&#10;&#9;&#9;c5.62,2.64,11.38,5.03,17.26,7.16c4.78,1.73,8,6.21,8,11.29v34.66c0,6.61,5.36,11.97,11.97,11.97h97.7&#10;&#9;&#9;c6.61,0,11.97-5.36,11.97-11.97v-34.66c0-5.08,3.22-9.56,8-11.29c2.44-0.88,4.86-1.81,7.25-2.79\"></path>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M196.106,164.975c17.192-11.34,37.769-17.94,59.894-17.94c23.273,0,44.833,7.302,62.542,19.743&#10;&#9;&#9;c1.404,0.979,2.782,1.997,4.121,3.053c25.733,19.911,42.296,51.118,42.296,86.176c0,35.057-16.563,66.251-42.296,86.162&#10;&#9;&#9;c-1.339,1.069-2.717,2.087-4.121,3.065c-17.709,12.429-39.269,19.732-62.542,19.732s-44.833-7.302-62.542-19.732&#10;&#9;&#9;c-1.404-0.979-2.782-1.996-4.121-3.065c-25.733-19.911-42.296-51.105-42.296-86.162c0-25.325,8.643-48.641,23.143-67.14\"></path>	<g>		<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;&#9;M473.856,483.005c-15.5,13.394-35.701,21.495-57.794,21.495c-48.843,0-88.438-39.595-88.438-88.438s39.595-88.438,88.438-88.438&#10;&#9;&#9;&#9;s88.438,39.595,88.438,88.438c0,14.174-3.334,27.569-9.262,39.444\"></path>		<g>							<polyline style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"&#10;&#9;&#9;&#9;&#9;390.094,434.86 416.062,460.828 442.03,434.86 &#9;&#9;&#9;\"></polyline>							<line style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" x1=\"416.062\" y1=\"460.828\" x2=\"416.062\" y2=\"371.296\"></line>		</g>	</g>	<path style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"&#10;&#9;&#9;M249.556,230.899v40.202c0,2.209,1.791,4,4,4h26.889\"></path></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:22:01', '2025-11-25 10:22:01', '', 761, 'https://mrarif.me/secureswipesolutions/?p=792', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(794, 1, '2025-11-25 10:22:14', '2025-11-25 10:22:14', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svg=\"http://www.w3.org/2000/svg\" id=\"svg2544\" xml:space=\"preserve\" width=\"682.66669\" height=\"682.66669\" viewBox=\"0 0 682.66669 682.66669\"><defs id=\"defs2548\"><clipPath clipPathUnits=\"userSpaceOnUse\" id=\"clipPath2558\"><path d=\"M 0,512 H 512 V 0 H 0 Z\" id=\"path2556\"></path></clipPath></defs><g id=\"g2550\" transform=\"matrix(1.3333333,0,0,-1.3333333,0,682.66667)\"><g id=\"g2552\"><g id=\"g2554\" clip-path=\"url(#clipPath2558)\"><g id=\"g2560\" transform=\"translate(336.0366,72.0117)\"><path d=\"m 0,0 c -12.303,-5.981 -25.285,-10.772 -38.778,-14.23 v -21.884 c 0,-10.432 -8.561,-18.965 -18.993,-18.965 h -63.411 c -10.46,0 -18.992,8.533 -18.992,18.965 v 21.884 c -19.077,4.876 -37.077,12.416 -53.603,22.224 l -15.477,-15.477 c -7.399,-7.399 -19.475,-7.399 -26.845,0 l -44.844,44.845 c -7.398,7.37 -7.398,19.474 0,26.845 l 15.478,15.478 c -9.808,16.526 -17.348,34.526 -22.224,53.604 h -21.884 c -10.431,0 -18.964,8.561 -18.964,18.993 v 63.413 c 0,10.46 8.533,18.992 18.964,18.992 h 21.884 c 4.876,19.078 12.416,37.079 22.224,53.605 l -15.478,15.478 c -7.398,7.398 -7.398,19.475 0,26.845 l 44.844,44.845 c 7.37,7.399 19.446,7.399 26.845,0 l 15.477,-15.478 c 16.526,9.809 34.526,17.349 53.603,22.225 v 21.884 c 0,10.432 8.532,18.964 18.992,18.964 h 63.411 c 10.432,0 18.993,-8.532 18.993,-18.964 v -21.884 c 19.077,-4.876 37.077,-12.416 53.603,-22.225 l 15.477,15.478 c 7.37,7.399 19.474,7.399 26.844,0 l 44.845,-44.845 c 7.398,-7.37 7.398,-19.447 0,-26.845 L 86.514,288.292 c 9.807,-16.526 17.348,-34.527 22.223,-53.605 h 21.884 c 10.431,0 18.963,-8.532 18.963,-18.992 v -63.413 c 0,-8.448 -5.584,-15.648 -13.237,-18.086\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2562\"></path></g><g id=\"g2564\" transform=\"translate(152.8896,364.5278)\"><path d=\"m 0,0 c -30.444,-26.278 -49.692,-65.142 -49.692,-108.514 0,-79.202 64.177,-143.381 143.349,-143.381 23.981,0 46.545,5.869 66.387,16.272 m 74.268,99.159 c 1.786,9.043 2.722,18.369 2.722,27.95 0,79.174 -64.177,143.353 -143.377,143.353 -24.322,0 -47.225,-6.067 -67.295,-16.754\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2566\"></path></g><g id=\"g2568\" transform=\"translate(216.8394,115.7231)\"><path d=\"m 0,0 v 91.278 c -29.934,11.084 -51.393,39.97 -51.393,73.618 0,26.874 13.664,50.714 34.414,64.859 21.77,14.883 17.546,-8.617 17.546,-12.558 v -47.141 c 0,-16.498 12.926,-30.105 29.14,-31.211 16.214,1.106 29.14,14.713 29.14,31.211 v 47.141 c 0,3.941 -4.195,27.441 17.575,12.558 20.75,-14.145 34.413,-37.985 34.413,-64.859 0,-33.648 -21.459,-62.534 -51.393,-73.618 L 59.442,0\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2570\"></path></g><g id=\"g2572\" transform=\"translate(453.7314,49.9858)\"><path d=\"m 0,0 c -13.437,-7.172 -28.8,-11.254 -45.1,-11.254 -52.951,0 -95.867,42.918 -95.867,95.871 0,52.952 42.916,95.87 95.867,95.87 52.952,0 95.869,-42.918 95.869,-95.87 0,-24.464 -9.185,-46.773 -24.265,-63.725\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2574\"></path></g><g id=\"g2576\" transform=\"translate(397.7187,135.623)\"><path d=\"m 0,0 30.954,36.908 c 6.435,7.682 17.943,8.703 25.654,2.268 7.682,-6.435 8.702,-17.944 2.239,-25.654 l -42.69,-50.94 c -3.231,-3.884 -7.398,-6.039 -12.415,-6.463 -5.018,-0.426 -9.468,0.992 -13.324,4.252 l -24.009,20.381 c -7.654,6.492 -8.589,18.001 -2.126,25.655 6.491,7.654 18.029,8.589 25.654,2.126 z\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2578\"></path></g></g></g></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:22:14', '2025-11-25 10:22:14', '', 761, 'https://mrarif.me/secureswipesolutions/?p=794', 0, 'revision', '', 0),
(795, 1, '2025-11-25 10:22:14', '2025-11-25 10:22:14', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svg=\"http://www.w3.org/2000/svg\" id=\"svg2544\" xml:space=\"preserve\" width=\"682.66669\" height=\"682.66669\" viewBox=\"0 0 682.66669 682.66669\"><defs id=\"defs2548\"><clipPath clipPathUnits=\"userSpaceOnUse\" id=\"clipPath2558\"><path d=\"M 0,512 H 512 V 0 H 0 Z\" id=\"path2556\"></path></clipPath></defs><g id=\"g2550\" transform=\"matrix(1.3333333,0,0,-1.3333333,0,682.66667)\"><g id=\"g2552\"><g id=\"g2554\" clip-path=\"url(#clipPath2558)\"><g id=\"g2560\" transform=\"translate(336.0366,72.0117)\"><path d=\"m 0,0 c -12.303,-5.981 -25.285,-10.772 -38.778,-14.23 v -21.884 c 0,-10.432 -8.561,-18.965 -18.993,-18.965 h -63.411 c -10.46,0 -18.992,8.533 -18.992,18.965 v 21.884 c -19.077,4.876 -37.077,12.416 -53.603,22.224 l -15.477,-15.477 c -7.399,-7.399 -19.475,-7.399 -26.845,0 l -44.844,44.845 c -7.398,7.37 -7.398,19.474 0,26.845 l 15.478,15.478 c -9.808,16.526 -17.348,34.526 -22.224,53.604 h -21.884 c -10.431,0 -18.964,8.561 -18.964,18.993 v 63.413 c 0,10.46 8.533,18.992 18.964,18.992 h 21.884 c 4.876,19.078 12.416,37.079 22.224,53.605 l -15.478,15.478 c -7.398,7.398 -7.398,19.475 0,26.845 l 44.844,44.845 c 7.37,7.399 19.446,7.399 26.845,0 l 15.477,-15.478 c 16.526,9.809 34.526,17.349 53.603,22.225 v 21.884 c 0,10.432 8.532,18.964 18.992,18.964 h 63.411 c 10.432,0 18.993,-8.532 18.993,-18.964 v -21.884 c 19.077,-4.876 37.077,-12.416 53.603,-22.225 l 15.477,15.478 c 7.37,7.399 19.474,7.399 26.844,0 l 44.845,-44.845 c 7.398,-7.37 7.398,-19.447 0,-26.845 L 86.514,288.292 c 9.807,-16.526 17.348,-34.527 22.223,-53.605 h 21.884 c 10.431,0 18.963,-8.532 18.963,-18.992 v -63.413 c 0,-8.448 -5.584,-15.648 -13.237,-18.086\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2562\"></path></g><g id=\"g2564\" transform=\"translate(152.8896,364.5278)\"><path d=\"m 0,0 c -30.444,-26.278 -49.692,-65.142 -49.692,-108.514 0,-79.202 64.177,-143.381 143.349,-143.381 23.981,0 46.545,5.869 66.387,16.272 m 74.268,99.159 c 1.786,9.043 2.722,18.369 2.722,27.95 0,79.174 -64.177,143.353 -143.377,143.353 -24.322,0 -47.225,-6.067 -67.295,-16.754\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2566\"></path></g><g id=\"g2568\" transform=\"translate(216.8394,115.7231)\"><path d=\"m 0,0 v 91.278 c -29.934,11.084 -51.393,39.97 -51.393,73.618 0,26.874 13.664,50.714 34.414,64.859 21.77,14.883 17.546,-8.617 17.546,-12.558 v -47.141 c 0,-16.498 12.926,-30.105 29.14,-31.211 16.214,1.106 29.14,14.713 29.14,31.211 v 47.141 c 0,3.941 -4.195,27.441 17.575,12.558 20.75,-14.145 34.413,-37.985 34.413,-64.859 0,-33.648 -21.459,-62.534 -51.393,-73.618 L 59.442,0\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2570\"></path></g><g id=\"g2572\" transform=\"translate(453.7314,49.9858)\"><path d=\"m 0,0 c -13.437,-7.172 -28.8,-11.254 -45.1,-11.254 -52.951,0 -95.867,42.918 -95.867,95.871 0,52.952 42.916,95.87 95.867,95.87 52.952,0 95.869,-42.918 95.869,-95.87 0,-24.464 -9.185,-46.773 -24.265,-63.725\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2574\"></path></g><g id=\"g2576\" transform=\"translate(397.7187,135.623)\"><path d=\"m 0,0 30.954,36.908 c 6.435,7.682 17.943,8.703 25.654,2.268 7.682,-6.435 8.702,-17.944 2.239,-25.654 l -42.69,-50.94 c -3.231,-3.884 -7.398,-6.039 -12.415,-6.463 -5.018,-0.426 -9.468,0.992 -13.324,4.252 l -24.009,20.381 c -7.654,6.492 -8.589,18.001 -2.126,25.655 6.491,7.654 18.029,8.589 25.654,2.126 z\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2578\"></path></g></g></g></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:22:14', '2025-11-25 10:22:14', '', 761, 'https://mrarif.me/secureswipesolutions/?p=795', 0, 'revision', '', 0),
(796, 1, '2025-11-25 10:22:14', '2025-11-25 10:22:14', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svg=\"http://www.w3.org/2000/svg\" id=\"svg2544\" xml:space=\"preserve\" width=\"682.66669\" height=\"682.66669\" viewBox=\"0 0 682.66669 682.66669\"><defs id=\"defs2548\"><clipPath clipPathUnits=\"userSpaceOnUse\" id=\"clipPath2558\"><path d=\"M 0,512 H 512 V 0 H 0 Z\" id=\"path2556\"></path></clipPath></defs><g id=\"g2550\" transform=\"matrix(1.3333333,0,0,-1.3333333,0,682.66667)\"><g id=\"g2552\"><g id=\"g2554\" clip-path=\"url(#clipPath2558)\"><g id=\"g2560\" transform=\"translate(336.0366,72.0117)\"><path d=\"m 0,0 c -12.303,-5.981 -25.285,-10.772 -38.778,-14.23 v -21.884 c 0,-10.432 -8.561,-18.965 -18.993,-18.965 h -63.411 c -10.46,0 -18.992,8.533 -18.992,18.965 v 21.884 c -19.077,4.876 -37.077,12.416 -53.603,22.224 l -15.477,-15.477 c -7.399,-7.399 -19.475,-7.399 -26.845,0 l -44.844,44.845 c -7.398,7.37 -7.398,19.474 0,26.845 l 15.478,15.478 c -9.808,16.526 -17.348,34.526 -22.224,53.604 h -21.884 c -10.431,0 -18.964,8.561 -18.964,18.993 v 63.413 c 0,10.46 8.533,18.992 18.964,18.992 h 21.884 c 4.876,19.078 12.416,37.079 22.224,53.605 l -15.478,15.478 c -7.398,7.398 -7.398,19.475 0,26.845 l 44.844,44.845 c 7.37,7.399 19.446,7.399 26.845,0 l 15.477,-15.478 c 16.526,9.809 34.526,17.349 53.603,22.225 v 21.884 c 0,10.432 8.532,18.964 18.992,18.964 h 63.411 c 10.432,0 18.993,-8.532 18.993,-18.964 v -21.884 c 19.077,-4.876 37.077,-12.416 53.603,-22.225 l 15.477,15.478 c 7.37,7.399 19.474,7.399 26.844,0 l 44.845,-44.845 c 7.398,-7.37 7.398,-19.447 0,-26.845 L 86.514,288.292 c 9.807,-16.526 17.348,-34.527 22.223,-53.605 h 21.884 c 10.431,0 18.963,-8.532 18.963,-18.992 v -63.413 c 0,-8.448 -5.584,-15.648 -13.237,-18.086\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2562\"></path></g><g id=\"g2564\" transform=\"translate(152.8896,364.5278)\"><path d=\"m 0,0 c -30.444,-26.278 -49.692,-65.142 -49.692,-108.514 0,-79.202 64.177,-143.381 143.349,-143.381 23.981,0 46.545,5.869 66.387,16.272 m 74.268,99.159 c 1.786,9.043 2.722,18.369 2.722,27.95 0,79.174 -64.177,143.353 -143.377,143.353 -24.322,0 -47.225,-6.067 -67.295,-16.754\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2566\"></path></g><g id=\"g2568\" transform=\"translate(216.8394,115.7231)\"><path d=\"m 0,0 v 91.278 c -29.934,11.084 -51.393,39.97 -51.393,73.618 0,26.874 13.664,50.714 34.414,64.859 21.77,14.883 17.546,-8.617 17.546,-12.558 v -47.141 c 0,-16.498 12.926,-30.105 29.14,-31.211 16.214,1.106 29.14,14.713 29.14,31.211 v 47.141 c 0,3.941 -4.195,27.441 17.575,12.558 20.75,-14.145 34.413,-37.985 34.413,-64.859 0,-33.648 -21.459,-62.534 -51.393,-73.618 L 59.442,0\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2570\"></path></g><g id=\"g2572\" transform=\"translate(453.7314,49.9858)\"><path d=\"m 0,0 c -13.437,-7.172 -28.8,-11.254 -45.1,-11.254 -52.951,0 -95.867,42.918 -95.867,95.871 0,52.952 42.916,95.87 95.867,95.87 52.952,0 95.869,-42.918 95.869,-95.87 0,-24.464 -9.185,-46.773 -24.265,-63.725\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2574\"></path></g><g id=\"g2576\" transform=\"translate(397.7187,135.623)\"><path d=\"m 0,0 30.954,36.908 c 6.435,7.682 17.943,8.703 25.654,2.268 7.682,-6.435 8.702,-17.944 2.239,-25.654 l -42.69,-50.94 c -3.231,-3.884 -7.398,-6.039 -12.415,-6.463 -5.018,-0.426 -9.468,0.992 -13.324,4.252 l -24.009,20.381 c -7.654,6.492 -8.589,18.001 -2.126,25.655 6.491,7.654 18.029,8.589 25.654,2.126 z\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2578\"></path></g></g></g></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:22:14', '2025-11-25 10:22:14', '', 761, 'https://mrarif.me/secureswipesolutions/?p=796', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(797, 1, '2025-11-25 10:22:30', '2025-11-25 10:22:30', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svg=\"http://www.w3.org/2000/svg\" id=\"svg2544\" xml:space=\"preserve\" width=\"682.66669\" height=\"682.66669\" viewBox=\"0 0 682.66669 682.66669\"><defs id=\"defs2548\"><clipPath clipPathUnits=\"userSpaceOnUse\" id=\"clipPath2558\"><path d=\"M 0,512 H 512 V 0 H 0 Z\" id=\"path2556\"></path></clipPath></defs><g id=\"g2550\" transform=\"matrix(1.3333333,0,0,-1.3333333,0,682.66667)\"><g id=\"g2552\"><g id=\"g2554\" clip-path=\"url(#clipPath2558)\"><g id=\"g2560\" transform=\"translate(336.0366,72.0117)\"><path d=\"m 0,0 c -12.303,-5.981 -25.285,-10.772 -38.778,-14.23 v -21.884 c 0,-10.432 -8.561,-18.965 -18.993,-18.965 h -63.411 c -10.46,0 -18.992,8.533 -18.992,18.965 v 21.884 c -19.077,4.876 -37.077,12.416 -53.603,22.224 l -15.477,-15.477 c -7.399,-7.399 -19.475,-7.399 -26.845,0 l -44.844,44.845 c -7.398,7.37 -7.398,19.474 0,26.845 l 15.478,15.478 c -9.808,16.526 -17.348,34.526 -22.224,53.604 h -21.884 c -10.431,0 -18.964,8.561 -18.964,18.993 v 63.413 c 0,10.46 8.533,18.992 18.964,18.992 h 21.884 c 4.876,19.078 12.416,37.079 22.224,53.605 l -15.478,15.478 c -7.398,7.398 -7.398,19.475 0,26.845 l 44.844,44.845 c 7.37,7.399 19.446,7.399 26.845,0 l 15.477,-15.478 c 16.526,9.809 34.526,17.349 53.603,22.225 v 21.884 c 0,10.432 8.532,18.964 18.992,18.964 h 63.411 c 10.432,0 18.993,-8.532 18.993,-18.964 v -21.884 c 19.077,-4.876 37.077,-12.416 53.603,-22.225 l 15.477,15.478 c 7.37,7.399 19.474,7.399 26.844,0 l 44.845,-44.845 c 7.398,-7.37 7.398,-19.447 0,-26.845 L 86.514,288.292 c 9.807,-16.526 17.348,-34.527 22.223,-53.605 h 21.884 c 10.431,0 18.963,-8.532 18.963,-18.992 v -63.413 c 0,-8.448 -5.584,-15.648 -13.237,-18.086\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2562\"></path></g><g id=\"g2564\" transform=\"translate(152.8896,364.5278)\"><path d=\"m 0,0 c -30.444,-26.278 -49.692,-65.142 -49.692,-108.514 0,-79.202 64.177,-143.381 143.349,-143.381 23.981,0 46.545,5.869 66.387,16.272 m 74.268,99.159 c 1.786,9.043 2.722,18.369 2.722,27.95 0,79.174 -64.177,143.353 -143.377,143.353 -24.322,0 -47.225,-6.067 -67.295,-16.754\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2566\"></path></g><g id=\"g2568\" transform=\"translate(216.8394,115.7231)\"><path d=\"m 0,0 v 91.278 c -29.934,11.084 -51.393,39.97 -51.393,73.618 0,26.874 13.664,50.714 34.414,64.859 21.77,14.883 17.546,-8.617 17.546,-12.558 v -47.141 c 0,-16.498 12.926,-30.105 29.14,-31.211 16.214,1.106 29.14,14.713 29.14,31.211 v 47.141 c 0,3.941 -4.195,27.441 17.575,12.558 20.75,-14.145 34.413,-37.985 34.413,-64.859 0,-33.648 -21.459,-62.534 -51.393,-73.618 L 59.442,0\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2570\"></path></g><g id=\"g2572\" transform=\"translate(453.7314,49.9858)\"><path d=\"m 0,0 c -13.437,-7.172 -28.8,-11.254 -45.1,-11.254 -52.951,0 -95.867,42.918 -95.867,95.871 0,52.952 42.916,95.87 95.867,95.87 52.952,0 95.869,-42.918 95.869,-95.87 0,-24.464 -9.185,-46.773 -24.265,-63.725\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2574\"></path></g><g id=\"g2576\" transform=\"translate(397.7187,135.623)\"><path d=\"m 0,0 30.954,36.908 c 6.435,7.682 17.943,8.703 25.654,2.268 7.682,-6.435 8.702,-17.944 2.239,-25.654 l -42.69,-50.94 c -3.231,-3.884 -7.398,-6.039 -12.415,-6.463 -5.018,-0.426 -9.468,0.992 -13.324,4.252 l -24.009,20.381 c -7.654,6.492 -8.589,18.001 -2.126,25.655 6.491,7.654 18.029,8.589 25.654,2.126 z\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2578\"></path></g></g></g></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:22:30', '2025-11-25 10:22:30', '', 761, 'https://mrarif.me/secureswipesolutions/?p=797', 0, 'revision', '', 0),
(798, 1, '2025-11-25 10:22:30', '2025-11-25 10:22:30', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svg=\"http://www.w3.org/2000/svg\" id=\"svg2544\" xml:space=\"preserve\" width=\"682.66669\" height=\"682.66669\" viewBox=\"0 0 682.66669 682.66669\"><defs id=\"defs2548\"><clipPath clipPathUnits=\"userSpaceOnUse\" id=\"clipPath2558\"><path d=\"M 0,512 H 512 V 0 H 0 Z\" id=\"path2556\"></path></clipPath></defs><g id=\"g2550\" transform=\"matrix(1.3333333,0,0,-1.3333333,0,682.66667)\"><g id=\"g2552\"><g id=\"g2554\" clip-path=\"url(#clipPath2558)\"><g id=\"g2560\" transform=\"translate(336.0366,72.0117)\"><path d=\"m 0,0 c -12.303,-5.981 -25.285,-10.772 -38.778,-14.23 v -21.884 c 0,-10.432 -8.561,-18.965 -18.993,-18.965 h -63.411 c -10.46,0 -18.992,8.533 -18.992,18.965 v 21.884 c -19.077,4.876 -37.077,12.416 -53.603,22.224 l -15.477,-15.477 c -7.399,-7.399 -19.475,-7.399 -26.845,0 l -44.844,44.845 c -7.398,7.37 -7.398,19.474 0,26.845 l 15.478,15.478 c -9.808,16.526 -17.348,34.526 -22.224,53.604 h -21.884 c -10.431,0 -18.964,8.561 -18.964,18.993 v 63.413 c 0,10.46 8.533,18.992 18.964,18.992 h 21.884 c 4.876,19.078 12.416,37.079 22.224,53.605 l -15.478,15.478 c -7.398,7.398 -7.398,19.475 0,26.845 l 44.844,44.845 c 7.37,7.399 19.446,7.399 26.845,0 l 15.477,-15.478 c 16.526,9.809 34.526,17.349 53.603,22.225 v 21.884 c 0,10.432 8.532,18.964 18.992,18.964 h 63.411 c 10.432,0 18.993,-8.532 18.993,-18.964 v -21.884 c 19.077,-4.876 37.077,-12.416 53.603,-22.225 l 15.477,15.478 c 7.37,7.399 19.474,7.399 26.844,0 l 44.845,-44.845 c 7.398,-7.37 7.398,-19.447 0,-26.845 L 86.514,288.292 c 9.807,-16.526 17.348,-34.527 22.223,-53.605 h 21.884 c 10.431,0 18.963,-8.532 18.963,-18.992 v -63.413 c 0,-8.448 -5.584,-15.648 -13.237,-18.086\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2562\"></path></g><g id=\"g2564\" transform=\"translate(152.8896,364.5278)\"><path d=\"m 0,0 c -30.444,-26.278 -49.692,-65.142 -49.692,-108.514 0,-79.202 64.177,-143.381 143.349,-143.381 23.981,0 46.545,5.869 66.387,16.272 m 74.268,99.159 c 1.786,9.043 2.722,18.369 2.722,27.95 0,79.174 -64.177,143.353 -143.377,143.353 -24.322,0 -47.225,-6.067 -67.295,-16.754\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2566\"></path></g><g id=\"g2568\" transform=\"translate(216.8394,115.7231)\"><path d=\"m 0,0 v 91.278 c -29.934,11.084 -51.393,39.97 -51.393,73.618 0,26.874 13.664,50.714 34.414,64.859 21.77,14.883 17.546,-8.617 17.546,-12.558 v -47.141 c 0,-16.498 12.926,-30.105 29.14,-31.211 16.214,1.106 29.14,14.713 29.14,31.211 v 47.141 c 0,3.941 -4.195,27.441 17.575,12.558 20.75,-14.145 34.413,-37.985 34.413,-64.859 0,-33.648 -21.459,-62.534 -51.393,-73.618 L 59.442,0\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2570\"></path></g><g id=\"g2572\" transform=\"translate(453.7314,49.9858)\"><path d=\"m 0,0 c -13.437,-7.172 -28.8,-11.254 -45.1,-11.254 -52.951,0 -95.867,42.918 -95.867,95.871 0,52.952 42.916,95.87 95.867,95.87 52.952,0 95.869,-42.918 95.869,-95.87 0,-24.464 -9.185,-46.773 -24.265,-63.725\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2574\"></path></g><g id=\"g2576\" transform=\"translate(397.7187,135.623)\"><path d=\"m 0,0 30.954,36.908 c 6.435,7.682 17.943,8.703 25.654,2.268 7.682,-6.435 8.702,-17.944 2.239,-25.654 l -42.69,-50.94 c -3.231,-3.884 -7.398,-6.039 -12.415,-6.463 -5.018,-0.426 -9.468,0.992 -13.324,4.252 l -24.009,20.381 c -7.654,6.492 -8.589,18.001 -2.126,25.655 6.491,7.654 18.029,8.589 25.654,2.126 z\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2578\"></path></g></g></g></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:22:30', '2025-11-25 10:22:30', '', 761, 'https://mrarif.me/secureswipesolutions/?p=798', 0, 'revision', '', 0),
(799, 1, '2025-11-25 10:22:31', '2025-11-25 10:22:31', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svg=\"http://www.w3.org/2000/svg\" id=\"svg2544\" xml:space=\"preserve\" width=\"682.66669\" height=\"682.66669\" viewBox=\"0 0 682.66669 682.66669\"><defs id=\"defs2548\"><clipPath clipPathUnits=\"userSpaceOnUse\" id=\"clipPath2558\"><path d=\"M 0,512 H 512 V 0 H 0 Z\" id=\"path2556\"></path></clipPath></defs><g id=\"g2550\" transform=\"matrix(1.3333333,0,0,-1.3333333,0,682.66667)\"><g id=\"g2552\"><g id=\"g2554\" clip-path=\"url(#clipPath2558)\"><g id=\"g2560\" transform=\"translate(336.0366,72.0117)\"><path d=\"m 0,0 c -12.303,-5.981 -25.285,-10.772 -38.778,-14.23 v -21.884 c 0,-10.432 -8.561,-18.965 -18.993,-18.965 h -63.411 c -10.46,0 -18.992,8.533 -18.992,18.965 v 21.884 c -19.077,4.876 -37.077,12.416 -53.603,22.224 l -15.477,-15.477 c -7.399,-7.399 -19.475,-7.399 -26.845,0 l -44.844,44.845 c -7.398,7.37 -7.398,19.474 0,26.845 l 15.478,15.478 c -9.808,16.526 -17.348,34.526 -22.224,53.604 h -21.884 c -10.431,0 -18.964,8.561 -18.964,18.993 v 63.413 c 0,10.46 8.533,18.992 18.964,18.992 h 21.884 c 4.876,19.078 12.416,37.079 22.224,53.605 l -15.478,15.478 c -7.398,7.398 -7.398,19.475 0,26.845 l 44.844,44.845 c 7.37,7.399 19.446,7.399 26.845,0 l 15.477,-15.478 c 16.526,9.809 34.526,17.349 53.603,22.225 v 21.884 c 0,10.432 8.532,18.964 18.992,18.964 h 63.411 c 10.432,0 18.993,-8.532 18.993,-18.964 v -21.884 c 19.077,-4.876 37.077,-12.416 53.603,-22.225 l 15.477,15.478 c 7.37,7.399 19.474,7.399 26.844,0 l 44.845,-44.845 c 7.398,-7.37 7.398,-19.447 0,-26.845 L 86.514,288.292 c 9.807,-16.526 17.348,-34.527 22.223,-53.605 h 21.884 c 10.431,0 18.963,-8.532 18.963,-18.992 v -63.413 c 0,-8.448 -5.584,-15.648 -13.237,-18.086\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2562\"></path></g><g id=\"g2564\" transform=\"translate(152.8896,364.5278)\"><path d=\"m 0,0 c -30.444,-26.278 -49.692,-65.142 -49.692,-108.514 0,-79.202 64.177,-143.381 143.349,-143.381 23.981,0 46.545,5.869 66.387,16.272 m 74.268,99.159 c 1.786,9.043 2.722,18.369 2.722,27.95 0,79.174 -64.177,143.353 -143.377,143.353 -24.322,0 -47.225,-6.067 -67.295,-16.754\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2566\"></path></g><g id=\"g2568\" transform=\"translate(216.8394,115.7231)\"><path d=\"m 0,0 v 91.278 c -29.934,11.084 -51.393,39.97 -51.393,73.618 0,26.874 13.664,50.714 34.414,64.859 21.77,14.883 17.546,-8.617 17.546,-12.558 v -47.141 c 0,-16.498 12.926,-30.105 29.14,-31.211 16.214,1.106 29.14,14.713 29.14,31.211 v 47.141 c 0,3.941 -4.195,27.441 17.575,12.558 20.75,-14.145 34.413,-37.985 34.413,-64.859 0,-33.648 -21.459,-62.534 -51.393,-73.618 L 59.442,0\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2570\"></path></g><g id=\"g2572\" transform=\"translate(453.7314,49.9858)\"><path d=\"m 0,0 c -13.437,-7.172 -28.8,-11.254 -45.1,-11.254 -52.951,0 -95.867,42.918 -95.867,95.871 0,52.952 42.916,95.87 95.867,95.87 52.952,0 95.869,-42.918 95.869,-95.87 0,-24.464 -9.185,-46.773 -24.265,-63.725\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2574\"></path></g><g id=\"g2576\" transform=\"translate(397.7187,135.623)\"><path d=\"m 0,0 30.954,36.908 c 6.435,7.682 17.943,8.703 25.654,2.268 7.682,-6.435 8.702,-17.944 2.239,-25.654 l -42.69,-50.94 c -3.231,-3.884 -7.398,-6.039 -12.415,-6.463 -5.018,-0.426 -9.468,0.992 -13.324,4.252 l -24.009,20.381 c -7.654,6.492 -8.589,18.001 -2.126,25.655 6.491,7.654 18.029,8.589 25.654,2.126 z\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2578\"></path></g></g></g></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:22:31', '2025-11-25 10:22:31', '', 761, 'https://mrarif.me/secureswipesolutions/?p=799', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(800, 1, '2025-11-25 10:22:49', '2025-11-25 10:22:49', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svg=\"http://www.w3.org/2000/svg\" id=\"svg2544\" xml:space=\"preserve\" width=\"682.66669\" height=\"682.66669\" viewBox=\"0 0 682.66669 682.66669\"><defs id=\"defs2548\"><clipPath clipPathUnits=\"userSpaceOnUse\" id=\"clipPath2558\"><path d=\"M 0,512 H 512 V 0 H 0 Z\" id=\"path2556\"></path></clipPath></defs><g id=\"g2550\" transform=\"matrix(1.3333333,0,0,-1.3333333,0,682.66667)\"><g id=\"g2552\"><g id=\"g2554\" clip-path=\"url(#clipPath2558)\"><g id=\"g2560\" transform=\"translate(336.0366,72.0117)\"><path d=\"m 0,0 c -12.303,-5.981 -25.285,-10.772 -38.778,-14.23 v -21.884 c 0,-10.432 -8.561,-18.965 -18.993,-18.965 h -63.411 c -10.46,0 -18.992,8.533 -18.992,18.965 v 21.884 c -19.077,4.876 -37.077,12.416 -53.603,22.224 l -15.477,-15.477 c -7.399,-7.399 -19.475,-7.399 -26.845,0 l -44.844,44.845 c -7.398,7.37 -7.398,19.474 0,26.845 l 15.478,15.478 c -9.808,16.526 -17.348,34.526 -22.224,53.604 h -21.884 c -10.431,0 -18.964,8.561 -18.964,18.993 v 63.413 c 0,10.46 8.533,18.992 18.964,18.992 h 21.884 c 4.876,19.078 12.416,37.079 22.224,53.605 l -15.478,15.478 c -7.398,7.398 -7.398,19.475 0,26.845 l 44.844,44.845 c 7.37,7.399 19.446,7.399 26.845,0 l 15.477,-15.478 c 16.526,9.809 34.526,17.349 53.603,22.225 v 21.884 c 0,10.432 8.532,18.964 18.992,18.964 h 63.411 c 10.432,0 18.993,-8.532 18.993,-18.964 v -21.884 c 19.077,-4.876 37.077,-12.416 53.603,-22.225 l 15.477,15.478 c 7.37,7.399 19.474,7.399 26.844,0 l 44.845,-44.845 c 7.398,-7.37 7.398,-19.447 0,-26.845 L 86.514,288.292 c 9.807,-16.526 17.348,-34.527 22.223,-53.605 h 21.884 c 10.431,0 18.963,-8.532 18.963,-18.992 v -63.413 c 0,-8.448 -5.584,-15.648 -13.237,-18.086\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2562\"></path></g><g id=\"g2564\" transform=\"translate(152.8896,364.5278)\"><path d=\"m 0,0 c -30.444,-26.278 -49.692,-65.142 -49.692,-108.514 0,-79.202 64.177,-143.381 143.349,-143.381 23.981,0 46.545,5.869 66.387,16.272 m 74.268,99.159 c 1.786,9.043 2.722,18.369 2.722,27.95 0,79.174 -64.177,143.353 -143.377,143.353 -24.322,0 -47.225,-6.067 -67.295,-16.754\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2566\"></path></g><g id=\"g2568\" transform=\"translate(216.8394,115.7231)\"><path d=\"m 0,0 v 91.278 c -29.934,11.084 -51.393,39.97 -51.393,73.618 0,26.874 13.664,50.714 34.414,64.859 21.77,14.883 17.546,-8.617 17.546,-12.558 v -47.141 c 0,-16.498 12.926,-30.105 29.14,-31.211 16.214,1.106 29.14,14.713 29.14,31.211 v 47.141 c 0,3.941 -4.195,27.441 17.575,12.558 20.75,-14.145 34.413,-37.985 34.413,-64.859 0,-33.648 -21.459,-62.534 -51.393,-73.618 L 59.442,0\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2570\"></path></g><g id=\"g2572\" transform=\"translate(453.7314,49.9858)\"><path d=\"m 0,0 c -13.437,-7.172 -28.8,-11.254 -45.1,-11.254 -52.951,0 -95.867,42.918 -95.867,95.871 0,52.952 42.916,95.87 95.867,95.87 52.952,0 95.869,-42.918 95.869,-95.87 0,-24.464 -9.185,-46.773 -24.265,-63.725\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2574\"></path></g><g id=\"g2576\" transform=\"translate(397.7187,135.623)\"><path d=\"m 0,0 30.954,36.908 c 6.435,7.682 17.943,8.703 25.654,2.268 7.682,-6.435 8.702,-17.944 2.239,-25.654 l -42.69,-50.94 c -3.231,-3.884 -7.398,-6.039 -12.415,-6.463 -5.018,-0.426 -9.468,0.992 -13.324,4.252 l -24.009,20.381 c -7.654,6.492 -8.589,18.001 -2.126,25.655 6.491,7.654 18.029,8.589 25.654,2.126 z\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2578\"></path></g></g></g></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:22:49', '2025-11-25 10:22:49', '', 761, 'https://mrarif.me/secureswipesolutions/?p=800', 0, 'revision', '', 0),
(801, 1, '2025-11-25 10:22:49', '2025-11-25 10:22:49', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svg=\"http://www.w3.org/2000/svg\" id=\"svg2544\" xml:space=\"preserve\" width=\"682.66669\" height=\"682.66669\" viewBox=\"0 0 682.66669 682.66669\"><defs id=\"defs2548\"><clipPath clipPathUnits=\"userSpaceOnUse\" id=\"clipPath2558\"><path d=\"M 0,512 H 512 V 0 H 0 Z\" id=\"path2556\"></path></clipPath></defs><g id=\"g2550\" transform=\"matrix(1.3333333,0,0,-1.3333333,0,682.66667)\"><g id=\"g2552\"><g id=\"g2554\" clip-path=\"url(#clipPath2558)\"><g id=\"g2560\" transform=\"translate(336.0366,72.0117)\"><path d=\"m 0,0 c -12.303,-5.981 -25.285,-10.772 -38.778,-14.23 v -21.884 c 0,-10.432 -8.561,-18.965 -18.993,-18.965 h -63.411 c -10.46,0 -18.992,8.533 -18.992,18.965 v 21.884 c -19.077,4.876 -37.077,12.416 -53.603,22.224 l -15.477,-15.477 c -7.399,-7.399 -19.475,-7.399 -26.845,0 l -44.844,44.845 c -7.398,7.37 -7.398,19.474 0,26.845 l 15.478,15.478 c -9.808,16.526 -17.348,34.526 -22.224,53.604 h -21.884 c -10.431,0 -18.964,8.561 -18.964,18.993 v 63.413 c 0,10.46 8.533,18.992 18.964,18.992 h 21.884 c 4.876,19.078 12.416,37.079 22.224,53.605 l -15.478,15.478 c -7.398,7.398 -7.398,19.475 0,26.845 l 44.844,44.845 c 7.37,7.399 19.446,7.399 26.845,0 l 15.477,-15.478 c 16.526,9.809 34.526,17.349 53.603,22.225 v 21.884 c 0,10.432 8.532,18.964 18.992,18.964 h 63.411 c 10.432,0 18.993,-8.532 18.993,-18.964 v -21.884 c 19.077,-4.876 37.077,-12.416 53.603,-22.225 l 15.477,15.478 c 7.37,7.399 19.474,7.399 26.844,0 l 44.845,-44.845 c 7.398,-7.37 7.398,-19.447 0,-26.845 L 86.514,288.292 c 9.807,-16.526 17.348,-34.527 22.223,-53.605 h 21.884 c 10.431,0 18.963,-8.532 18.963,-18.992 v -63.413 c 0,-8.448 -5.584,-15.648 -13.237,-18.086\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2562\"></path></g><g id=\"g2564\" transform=\"translate(152.8896,364.5278)\"><path d=\"m 0,0 c -30.444,-26.278 -49.692,-65.142 -49.692,-108.514 0,-79.202 64.177,-143.381 143.349,-143.381 23.981,0 46.545,5.869 66.387,16.272 m 74.268,99.159 c 1.786,9.043 2.722,18.369 2.722,27.95 0,79.174 -64.177,143.353 -143.377,143.353 -24.322,0 -47.225,-6.067 -67.295,-16.754\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2566\"></path></g><g id=\"g2568\" transform=\"translate(216.8394,115.7231)\"><path d=\"m 0,0 v 91.278 c -29.934,11.084 -51.393,39.97 -51.393,73.618 0,26.874 13.664,50.714 34.414,64.859 21.77,14.883 17.546,-8.617 17.546,-12.558 v -47.141 c 0,-16.498 12.926,-30.105 29.14,-31.211 16.214,1.106 29.14,14.713 29.14,31.211 v 47.141 c 0,3.941 -4.195,27.441 17.575,12.558 20.75,-14.145 34.413,-37.985 34.413,-64.859 0,-33.648 -21.459,-62.534 -51.393,-73.618 L 59.442,0\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2570\"></path></g><g id=\"g2572\" transform=\"translate(453.7314,49.9858)\"><path d=\"m 0,0 c -13.437,-7.172 -28.8,-11.254 -45.1,-11.254 -52.951,0 -95.867,42.918 -95.867,95.871 0,52.952 42.916,95.87 95.867,95.87 52.952,0 95.869,-42.918 95.869,-95.87 0,-24.464 -9.185,-46.773 -24.265,-63.725\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2574\"></path></g><g id=\"g2576\" transform=\"translate(397.7187,135.623)\"><path d=\"m 0,0 30.954,36.908 c 6.435,7.682 17.943,8.703 25.654,2.268 7.682,-6.435 8.702,-17.944 2.239,-25.654 l -42.69,-50.94 c -3.231,-3.884 -7.398,-6.039 -12.415,-6.463 -5.018,-0.426 -9.468,0.992 -13.324,4.252 l -24.009,20.381 c -7.654,6.492 -8.589,18.001 -2.126,25.655 6.491,7.654 18.029,8.589 25.654,2.126 z\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2578\"></path></g></g></g></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:22:49', '2025-11-25 10:22:49', '', 761, 'https://mrarif.me/secureswipesolutions/?p=801', 0, 'revision', '', 0),
(802, 1, '2025-11-25 10:22:49', '2025-11-25 10:22:49', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svg=\"http://www.w3.org/2000/svg\" id=\"svg2544\" xml:space=\"preserve\" width=\"682.66669\" height=\"682.66669\" viewBox=\"0 0 682.66669 682.66669\"><defs id=\"defs2548\"><clipPath clipPathUnits=\"userSpaceOnUse\" id=\"clipPath2558\"><path d=\"M 0,512 H 512 V 0 H 0 Z\" id=\"path2556\"></path></clipPath></defs><g id=\"g2550\" transform=\"matrix(1.3333333,0,0,-1.3333333,0,682.66667)\"><g id=\"g2552\"><g id=\"g2554\" clip-path=\"url(#clipPath2558)\"><g id=\"g2560\" transform=\"translate(336.0366,72.0117)\"><path d=\"m 0,0 c -12.303,-5.981 -25.285,-10.772 -38.778,-14.23 v -21.884 c 0,-10.432 -8.561,-18.965 -18.993,-18.965 h -63.411 c -10.46,0 -18.992,8.533 -18.992,18.965 v 21.884 c -19.077,4.876 -37.077,12.416 -53.603,22.224 l -15.477,-15.477 c -7.399,-7.399 -19.475,-7.399 -26.845,0 l -44.844,44.845 c -7.398,7.37 -7.398,19.474 0,26.845 l 15.478,15.478 c -9.808,16.526 -17.348,34.526 -22.224,53.604 h -21.884 c -10.431,0 -18.964,8.561 -18.964,18.993 v 63.413 c 0,10.46 8.533,18.992 18.964,18.992 h 21.884 c 4.876,19.078 12.416,37.079 22.224,53.605 l -15.478,15.478 c -7.398,7.398 -7.398,19.475 0,26.845 l 44.844,44.845 c 7.37,7.399 19.446,7.399 26.845,0 l 15.477,-15.478 c 16.526,9.809 34.526,17.349 53.603,22.225 v 21.884 c 0,10.432 8.532,18.964 18.992,18.964 h 63.411 c 10.432,0 18.993,-8.532 18.993,-18.964 v -21.884 c 19.077,-4.876 37.077,-12.416 53.603,-22.225 l 15.477,15.478 c 7.37,7.399 19.474,7.399 26.844,0 l 44.845,-44.845 c 7.398,-7.37 7.398,-19.447 0,-26.845 L 86.514,288.292 c 9.807,-16.526 17.348,-34.527 22.223,-53.605 h 21.884 c 10.431,0 18.963,-8.532 18.963,-18.992 v -63.413 c 0,-8.448 -5.584,-15.648 -13.237,-18.086\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2562\"></path></g><g id=\"g2564\" transform=\"translate(152.8896,364.5278)\"><path d=\"m 0,0 c -30.444,-26.278 -49.692,-65.142 -49.692,-108.514 0,-79.202 64.177,-143.381 143.349,-143.381 23.981,0 46.545,5.869 66.387,16.272 m 74.268,99.159 c 1.786,9.043 2.722,18.369 2.722,27.95 0,79.174 -64.177,143.353 -143.377,143.353 -24.322,0 -47.225,-6.067 -67.295,-16.754\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2566\"></path></g><g id=\"g2568\" transform=\"translate(216.8394,115.7231)\"><path d=\"m 0,0 v 91.278 c -29.934,11.084 -51.393,39.97 -51.393,73.618 0,26.874 13.664,50.714 34.414,64.859 21.77,14.883 17.546,-8.617 17.546,-12.558 v -47.141 c 0,-16.498 12.926,-30.105 29.14,-31.211 16.214,1.106 29.14,14.713 29.14,31.211 v 47.141 c 0,3.941 -4.195,27.441 17.575,12.558 20.75,-14.145 34.413,-37.985 34.413,-64.859 0,-33.648 -21.459,-62.534 -51.393,-73.618 L 59.442,0\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2570\"></path></g><g id=\"g2572\" transform=\"translate(453.7314,49.9858)\"><path d=\"m 0,0 c -13.437,-7.172 -28.8,-11.254 -45.1,-11.254 -52.951,0 -95.867,42.918 -95.867,95.871 0,52.952 42.916,95.87 95.867,95.87 52.952,0 95.869,-42.918 95.869,-95.87 0,-24.464 -9.185,-46.773 -24.265,-63.725\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2574\"></path></g><g id=\"g2576\" transform=\"translate(397.7187,135.623)\"><path d=\"m 0,0 30.954,36.908 c 6.435,7.682 17.943,8.703 25.654,2.268 7.682,-6.435 8.702,-17.944 2.239,-25.654 l -42.69,-50.94 c -3.231,-3.884 -7.398,-6.039 -12.415,-6.463 -5.018,-0.426 -9.468,0.992 -13.324,4.252 l -24.009,20.381 c -7.654,6.492 -8.589,18.001 -2.126,25.655 6.491,7.654 18.029,8.589 25.654,2.126 z\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2578\"></path></g></g></g></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:22:49', '2025-11-25 10:22:49', '', 761, 'https://mrarif.me/secureswipesolutions/?p=802', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(803, 1, '2025-11-25 10:23:50', '2025-11-25 10:23:50', '', 'cogwheel_16458123', '', 'inherit', 'open', 'closed', '', 'cogwheel_16458123', '', '', '2025-11-25 10:23:50', '2025-11-25 10:23:50', '', 761, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/cogwheel_16458123.svg', 0, 'attachment', 'image/svg+xml', 0),
(804, 1, '2025-11-25 10:23:55', '2025-11-25 10:23:55', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svg=\"http://www.w3.org/2000/svg\" id=\"svg2544\" xml:space=\"preserve\" width=\"682.66669\" height=\"682.66669\" viewBox=\"0 0 682.66669 682.66669\"><defs id=\"defs2548\"><clipPath clipPathUnits=\"userSpaceOnUse\" id=\"clipPath2558\"><path d=\"M 0,512 H 512 V 0 H 0 Z\" id=\"path2556\"></path></clipPath></defs><g id=\"g2550\" transform=\"matrix(1.3333333,0,0,-1.3333333,0,682.66667)\"><g id=\"g2552\"><g id=\"g2554\" clip-path=\"url(#clipPath2558)\"><g id=\"g2560\" transform=\"translate(336.0366,72.0117)\"><path d=\"m 0,0 c -12.303,-5.981 -25.285,-10.772 -38.778,-14.23 v -21.884 c 0,-10.432 -8.561,-18.965 -18.993,-18.965 h -63.411 c -10.46,0 -18.992,8.533 -18.992,18.965 v 21.884 c -19.077,4.876 -37.077,12.416 -53.603,22.224 l -15.477,-15.477 c -7.399,-7.399 -19.475,-7.399 -26.845,0 l -44.844,44.845 c -7.398,7.37 -7.398,19.474 0,26.845 l 15.478,15.478 c -9.808,16.526 -17.348,34.526 -22.224,53.604 h -21.884 c -10.431,0 -18.964,8.561 -18.964,18.993 v 63.413 c 0,10.46 8.533,18.992 18.964,18.992 h 21.884 c 4.876,19.078 12.416,37.079 22.224,53.605 l -15.478,15.478 c -7.398,7.398 -7.398,19.475 0,26.845 l 44.844,44.845 c 7.37,7.399 19.446,7.399 26.845,0 l 15.477,-15.478 c 16.526,9.809 34.526,17.349 53.603,22.225 v 21.884 c 0,10.432 8.532,18.964 18.992,18.964 h 63.411 c 10.432,0 18.993,-8.532 18.993,-18.964 v -21.884 c 19.077,-4.876 37.077,-12.416 53.603,-22.225 l 15.477,15.478 c 7.37,7.399 19.474,7.399 26.844,0 l 44.845,-44.845 c 7.398,-7.37 7.398,-19.447 0,-26.845 L 86.514,288.292 c 9.807,-16.526 17.348,-34.527 22.223,-53.605 h 21.884 c 10.431,0 18.963,-8.532 18.963,-18.992 v -63.413 c 0,-8.448 -5.584,-15.648 -13.237,-18.086\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2562\"></path></g><g id=\"g2564\" transform=\"translate(152.8896,364.5278)\"><path d=\"m 0,0 c -30.444,-26.278 -49.692,-65.142 -49.692,-108.514 0,-79.202 64.177,-143.381 143.349,-143.381 23.981,0 46.545,5.869 66.387,16.272 m 74.268,99.159 c 1.786,9.043 2.722,18.369 2.722,27.95 0,79.174 -64.177,143.353 -143.377,143.353 -24.322,0 -47.225,-6.067 -67.295,-16.754\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2566\"></path></g><g id=\"g2568\" transform=\"translate(216.8394,115.7231)\"><path d=\"m 0,0 v 91.278 c -29.934,11.084 -51.393,39.97 -51.393,73.618 0,26.874 13.664,50.714 34.414,64.859 21.77,14.883 17.546,-8.617 17.546,-12.558 v -47.141 c 0,-16.498 12.926,-30.105 29.14,-31.211 16.214,1.106 29.14,14.713 29.14,31.211 v 47.141 c 0,3.941 -4.195,27.441 17.575,12.558 20.75,-14.145 34.413,-37.985 34.413,-64.859 0,-33.648 -21.459,-62.534 -51.393,-73.618 L 59.442,0\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2570\"></path></g><g id=\"g2572\" transform=\"translate(453.7314,49.9858)\"><path d=\"m 0,0 c -13.437,-7.172 -28.8,-11.254 -45.1,-11.254 -52.951,0 -95.867,42.918 -95.867,95.871 0,52.952 42.916,95.87 95.867,95.87 52.952,0 95.869,-42.918 95.869,-95.87 0,-24.464 -9.185,-46.773 -24.265,-63.725\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2574\"></path></g><g id=\"g2576\" transform=\"translate(397.7187,135.623)\"><path d=\"m 0,0 30.954,36.908 c 6.435,7.682 17.943,8.703 25.654,2.268 7.682,-6.435 8.702,-17.944 2.239,-25.654 l -42.69,-50.94 c -3.231,-3.884 -7.398,-6.039 -12.415,-6.463 -5.018,-0.426 -9.468,0.992 -13.324,4.252 l -24.009,20.381 c -7.654,6.492 -8.589,18.001 -2.126,25.655 6.491,7.654 18.029,8.589 25.654,2.126 z\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2578\"></path></g></g></g></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:23:55', '2025-11-25 10:23:55', '', 761, 'https://mrarif.me/secureswipesolutions/?p=804', 0, 'revision', '', 0),
(805, 1, '2025-11-25 10:23:55', '2025-11-25 10:23:55', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:svg=\"http://www.w3.org/2000/svg\" id=\"svg2544\" xml:space=\"preserve\" width=\"682.66669\" height=\"682.66669\" viewBox=\"0 0 682.66669 682.66669\"><defs id=\"defs2548\"><clipPath clipPathUnits=\"userSpaceOnUse\" id=\"clipPath2558\"><path d=\"M 0,512 H 512 V 0 H 0 Z\" id=\"path2556\"></path></clipPath></defs><g id=\"g2550\" transform=\"matrix(1.3333333,0,0,-1.3333333,0,682.66667)\"><g id=\"g2552\"><g id=\"g2554\" clip-path=\"url(#clipPath2558)\"><g id=\"g2560\" transform=\"translate(336.0366,72.0117)\"><path d=\"m 0,0 c -12.303,-5.981 -25.285,-10.772 -38.778,-14.23 v -21.884 c 0,-10.432 -8.561,-18.965 -18.993,-18.965 h -63.411 c -10.46,0 -18.992,8.533 -18.992,18.965 v 21.884 c -19.077,4.876 -37.077,12.416 -53.603,22.224 l -15.477,-15.477 c -7.399,-7.399 -19.475,-7.399 -26.845,0 l -44.844,44.845 c -7.398,7.37 -7.398,19.474 0,26.845 l 15.478,15.478 c -9.808,16.526 -17.348,34.526 -22.224,53.604 h -21.884 c -10.431,0 -18.964,8.561 -18.964,18.993 v 63.413 c 0,10.46 8.533,18.992 18.964,18.992 h 21.884 c 4.876,19.078 12.416,37.079 22.224,53.605 l -15.478,15.478 c -7.398,7.398 -7.398,19.475 0,26.845 l 44.844,44.845 c 7.37,7.399 19.446,7.399 26.845,0 l 15.477,-15.478 c 16.526,9.809 34.526,17.349 53.603,22.225 v 21.884 c 0,10.432 8.532,18.964 18.992,18.964 h 63.411 c 10.432,0 18.993,-8.532 18.993,-18.964 v -21.884 c 19.077,-4.876 37.077,-12.416 53.603,-22.225 l 15.477,15.478 c 7.37,7.399 19.474,7.399 26.844,0 l 44.845,-44.845 c 7.398,-7.37 7.398,-19.447 0,-26.845 L 86.514,288.292 c 9.807,-16.526 17.348,-34.527 22.223,-53.605 h 21.884 c 10.431,0 18.963,-8.532 18.963,-18.992 v -63.413 c 0,-8.448 -5.584,-15.648 -13.237,-18.086\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2562\"></path></g><g id=\"g2564\" transform=\"translate(152.8896,364.5278)\"><path d=\"m 0,0 c -30.444,-26.278 -49.692,-65.142 -49.692,-108.514 0,-79.202 64.177,-143.381 143.349,-143.381 23.981,0 46.545,5.869 66.387,16.272 m 74.268,99.159 c 1.786,9.043 2.722,18.369 2.722,27.95 0,79.174 -64.177,143.353 -143.377,143.353 -24.322,0 -47.225,-6.067 -67.295,-16.754\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2566\"></path></g><g id=\"g2568\" transform=\"translate(216.8394,115.7231)\"><path d=\"m 0,0 v 91.278 c -29.934,11.084 -51.393,39.97 -51.393,73.618 0,26.874 13.664,50.714 34.414,64.859 21.77,14.883 17.546,-8.617 17.546,-12.558 v -47.141 c 0,-16.498 12.926,-30.105 29.14,-31.211 16.214,1.106 29.14,14.713 29.14,31.211 v 47.141 c 0,3.941 -4.195,27.441 17.575,12.558 20.75,-14.145 34.413,-37.985 34.413,-64.859 0,-33.648 -21.459,-62.534 -51.393,-73.618 L 59.442,0\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2570\"></path></g><g id=\"g2572\" transform=\"translate(453.7314,49.9858)\"><path d=\"m 0,0 c -13.437,-7.172 -28.8,-11.254 -45.1,-11.254 -52.951,0 -95.867,42.918 -95.867,95.871 0,52.952 42.916,95.87 95.867,95.87 52.952,0 95.869,-42.918 95.869,-95.87 0,-24.464 -9.185,-46.773 -24.265,-63.725\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2574\"></path></g><g id=\"g2576\" transform=\"translate(397.7187,135.623)\"><path d=\"m 0,0 30.954,36.908 c 6.435,7.682 17.943,8.703 25.654,2.268 7.682,-6.435 8.702,-17.944 2.239,-25.654 l -42.69,-50.94 c -3.231,-3.884 -7.398,-6.039 -12.415,-6.463 -5.018,-0.426 -9.468,0.992 -13.324,4.252 l -24.009,20.381 c -7.654,6.492 -8.589,18.001 -2.126,25.655 6.491,7.654 18.029,8.589 25.654,2.126 z\" style=\"fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1\" id=\"path2578\"></path></g></g></g></g></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:23:55', '2025-11-25 10:23:55', '', 761, 'https://mrarif.me/secureswipesolutions/?p=805', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(806, 1, '2025-11-25 10:23:55', '2025-11-25 10:23:55', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M63.457,49.62988a1.999,1.999,0,0,0-2.82715-.08691L38.59766,70.25488l-9.22754-8.67383a2,2,0,0,0-2.74023,2.91406L37.22754,74.457a2.00015,2.00015,0,0,0,2.74023,0l23.40234-22A1.99992,1.99992,0,0,0,63.457,49.62988Z\"></path><path d=\"M21.49121,39.81152a2.00029,2.00029,0,0,0-2.81152.30957,34.99343,34.99343,0,0,0-2.4834,3.52051,1.99947,1.99947,0,0,0,.65233,2.75195,2.02718,2.02718,0,0,0,2.752-.65234,31.08368,31.08368,0,0,1,2.2002-3.11816A2.00019,2.00019,0,0,0,21.49121,39.81152Z\"></path><path d=\"M52.53906,31.68945a2.02441,2.02441,0,0,0,2.376-1.53418,1.99948,1.99948,0,0,0-1.53418-2.376,34.75616,34.75616,0,0,0-4.26074-.64258,1.99993,1.99993,0,1,0-.35156,3.98438A30.76869,30.76869,0,0,1,52.53906,31.68945Z\"></path><path d=\"M11.60156,68.49414A2.00087,2.00087,0,0,0,13.56545,70.125a2.021,2.021,0,0,0,1.96776-2.36914,31.54123,31.54123,0,0,1-.47266-3.78711,2.00013,2.00013,0,1,0-3.99219.25391A35.42,35.42,0,0,0,11.60156,68.49414Z\"></path><path d=\"M76.03906,54.31641a1.98391,1.98391,0,0,0,.25055.56409c.61652-.2403,1.23193-.48346,1.86176-.691A7.663,7.663,0,0,1,79.351,51.368c-.22949-.72107-.47968-1.43652-.75525-2.13953a2.00044,2.00044,0,1,0-3.72461,1.46094A30.56134,30.56134,0,0,1,76.03906,54.31641Z\"></path><path d=\"M65.80762,35.52734a2.00052,2.00052,0,0,0-.56934-2.77051,35.21845,35.21845,0,0,0-3.73535-2.14453,1.99981,1.99981,0,0,0-1.77539,3.584,31.29353,31.29353,0,0,1,3.30957,1.90039A2.02462,2.02462,0,0,0,65.80762,35.52734Z\"></path><path d=\"M71.7832,38.33105a1.99952,1.99952,0,1,0-2.94531,2.70508A31.4367,31.4367,0,0,1,71.24217,43.999a2.03139,2.03139,0,0,0,2.79005.46389,1.99988,1.99988,0,0,0,.46387-2.79A35.26906,35.26906,0,0,0,71.7832,38.33105Z\"></path><path d=\"M13.18262,57.9707a2.01714,2.01714,0,0,0,2.32812-1.60547,30.998,30.998,0,0,1,.91992-3.70117,1.99985,1.99985,0,1,0-3.81445-1.20312,34.82591,34.82591,0,0,0-1.03906,4.18164A1.99871,1.99871,0,0,0,13.18262,57.9707Z\"></path><path d=\"M36.876,32.27437a1.91577,1.91577,0,0,0,.5517-.07418,30.98865,30.98865,0,0,1,3.72461-.82324,1.99969,1.99969,0,0,0-.61914-3.95117,35.03118,35.03118,0,0,0-4.207.92871A2.00054,2.00054,0,0,0,34.9541,30.8281,2.04073,2.04073,0,0,0,36.876,32.27437Z\"></path><path d=\"M46.02832,93c-.27441.02148-.63574-.00488-.9541-.01367a1.99991,1.99991,0,1,0-.11914,3.998c.3584.01074.71484.01074,1.0752.01563.808,0,1.62079-.03748,2.42957-.09387A7.67571,7.67571,0,0,1,48,94.28613V92.92975C47.34338,92.97137,46.68457,93,46.02832,93Z\"></path><path d=\"M37.54688,91.834a30.83649,30.83649,0,0,1-3.60059-1.2627,2,2,0,0,0-1.55469,3.68555A34.96388,34.96388,0,0,0,36.459,95.6836a2.02657,2.02657,0,0,0,2.46874-1.38086A2.00107,2.00107,0,0,0,37.54688,91.834Z\"></path><path d=\"M16.2666,80.47461a2.02966,2.02966,0,0,0,2.75488.6416,2.00116,2.00116,0,0,0,.6416-2.75488,31.00909,31.00909,0,0,1-1.8125-3.35547,1.9998,1.9998,0,1,0-3.62891,1.68164A35.261,35.261,0,0,0,16.2666,80.47461Z\"></path><path d=\"M24.94238,89.959a2.02558,2.02558,0,0,0,2.80078-.39258,1.99965,1.99965,0,0,0-.39258-2.80078,31.20992,31.20992,0,0,1-2.90039-2.48047,2.00006,2.00006,0,0,0-2.78125,2.875A35.09214,35.09214,0,0,0,24.94238,89.959Z\"></path><path d=\"M26.04784,37.70544a1.97083,1.97083,0,0,0,1.208-.3988,31.33317,31.33317,0,0,1,3.17285-2.11719,2.00037,2.00037,0,1,0-2.01367-3.457,35.27032,35.27032,0,0,0-3.5791,2.39062,1.99205,1.99205,0,0,0,1.2119,3.5824Z\"></path><path d=\"M46,104A42,42,0,1,1,85.59363,48.00537C85.634,48.00476,85.67334,48,85.71387,48h4.10059a46.0405,46.0405,0,0,0-9.92438-17.062l3.37164-3.37164a17.02613,17.02613,0,0,1,1.03612,1.48338,1.99985,1.99985,0,0,0,3.40431-2.09959,20.72153,20.72153,0,0,0-2.9068-3.699.31835.31835,0,0,0-.03516-.03723,19.006,19.006,0,0,0-3.73676-2.93176,1.99954,1.99954,0,1,0-2.04687,3.43555A14.52372,14.52372,0,0,1,80.445,24.72687L77.05884,28.113A45.8366,45.8366,0,0,0,52,16.39526V12h4a2.0001,2.0001,0,0,0,2-2V2a2.0001,2.0001,0,0,0-2-2H36a2.0001,2.0001,0,0,0-2,2v8a2.0001,2.0001,0,0,0,2,2h4v4.40405A45.85274,45.85274,0,0,0,14.93616,28.108L11.555,24.72687a14.52685,14.52685,0,0,1,1.46844-1.00909,1.99954,1.99954,0,0,0-2.04687-3.43555,19.13535,19.13535,0,0,0-3.751,2.94336c-.008.008-.01312.01758-.02094.02563a20.72153,20.72153,0,0,0-2.9068,3.699,1.99947,1.99947,0,0,0,.65234,2.752,2.02308,2.02308,0,0,0,2.752-.65234,17.01643,17.01643,0,0,1,1.03619-1.48334L12.108,30.93616a45.96878,45.96878,0,0,0,44.1402,75.89868,37.33789,37.33789,0,0,1-1.59467-3.73584A42.00487,42.00487,0,0,1,46,104Zm2-87.95532C47.33667,16.01617,46.67023,16,46,16c-.67072,0-1.33618.02222-2,.05078V12h4ZM38,8V4H54V8H38Z\"></path><path d=\"M124.28613,82H122.752a33.31979,33.31979,0,0,0-3.93359-9.50488l1.082-1.082a3.71858,3.71858,0,0,0,0-5.25293l-6.06055-6.06055a3.71681,3.71681,0,0,0-5.25293,0l-1.082,1.082A33.31979,33.31979,0,0,0,98,57.248V55.71387A3.718,3.718,0,0,0,94.28613,52H85.71387A3.718,3.718,0,0,0,82,55.71387V57.248a33.31979,33.31979,0,0,0-9.50488,3.93359l-1.082-1.082a3.71681,3.71681,0,0,0-5.25293,0l-6.06055,6.06055a3.71858,3.71858,0,0,0,0,5.25293l1.082,1.082A33.31979,33.31979,0,0,0,57.248,82H55.71387A3.718,3.718,0,0,0,52,85.71387v8.57227A3.718,3.718,0,0,0,55.71387,98H57.248a33.31979,33.31979,0,0,0,3.93359,9.50488l-1.082,1.082a3.71858,3.71858,0,0,0,0,5.25293l6.06152,6.06152a3.721,3.721,0,0,0,5.252-.001l1.082-1.082A33.31979,33.31979,0,0,0,82,122.752v1.53418A3.718,3.718,0,0,0,85.71387,128h8.57227A3.718,3.718,0,0,0,98,124.28613V122.752a33.31979,33.31979,0,0,0,9.50488-3.93359l1.083,1.083a3.721,3.721,0,0,0,5.252-.001l6.06055-6.06055a3.71858,3.71858,0,0,0,0-5.25293l-1.082-1.082A33.31979,33.31979,0,0,0,122.752,98h1.53418A3.718,3.718,0,0,0,128,94.28613V85.71387A3.718,3.718,0,0,0,124.28613,82ZM124,94h-2.86035a1.99951,1.99951,0,0,0-1.96387,1.624,29.42633,29.42633,0,0,1-4.56641,11.0332,1.99907,1.99907,0,0,0,.24121,2.53613l2.01953,2.02051-5.65625,5.65625-2.02051-2.01953a1.99907,1.99907,0,0,0-2.53613-.24121,29.42645,29.42645,0,0,1-11.0332,4.56641A1.99951,1.99951,0,0,0,94,121.13965V124H86v-2.86035a1.99951,1.99951,0,0,0-1.624-1.96387,29.42621,29.42621,0,0,1-11.0332-4.56641,2.00164,2.00164,0,0,0-2.53613.24121l-2.02051,2.01953-5.65625-5.65625,2.01953-2.02051a1.99907,1.99907,0,0,0,.24121-2.53613A29.42633,29.42633,0,0,1,60.82422,95.624,1.99951,1.99951,0,0,0,58.86035,94H56V86h2.86035a1.99951,1.99951,0,0,0,1.96387-1.624,29.42633,29.42633,0,0,1,4.56641-11.0332,1.99907,1.99907,0,0,0-.24121-2.53613l-2.01953-2.02051,5.65625-5.65625,2.02051,2.01953a1.99918,1.99918,0,0,0,2.53613.24121A29.42621,29.42621,0,0,1,84.376,60.82422,1.99951,1.99951,0,0,0,86,58.86035V56h8v2.86035a1.99951,1.99951,0,0,0,1.624,1.96387,29.42645,29.42645,0,0,1,11.0332,4.56641,1.99639,1.99639,0,0,0,2.53613-.24121l2.02051-2.01953,5.65625,5.65625-2.01953,2.02051a1.99907,1.99907,0,0,0-.24121,2.53613,29.42633,29.42633,0,0,1,4.56641,11.0332A1.99951,1.99951,0,0,0,121.13965,86H124Z\"></path><path d=\"M90,68a22,22,0,1,0,22,22A22.02489,22.02489,0,0,0,90,68Zm0,40a18,18,0,1,1,18-18A18.02094,18.02094,0,0,1,90,108Z\"></path></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 10:23:55', '2025-11-25 10:23:55', '', 761, 'https://mrarif.me/secureswipesolutions/?p=806', 0, 'revision', '', 0),
(810, 1, '2025-11-25 10:38:34', '2025-11-25 10:38:34', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 10:38:34', '2025-11-25 10:38:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=810', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(808, 1, '2025-11-25 10:38:33', '2025-11-25 10:38:33', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 10:38:33', '2025-11-25 10:38:33', '', 10, 'https://mrarif.me/secureswipesolutions/?p=808', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(809, 1, '2025-11-25 10:38:34', '2025-11-25 10:38:34', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 10:38:34', '2025-11-25 10:38:34', '', 10, 'https://mrarif.me/secureswipesolutions/?p=809', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(811, 1, '2025-11-25 10:39:22', '2025-11-25 10:39:22', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 10:39:22', '2025-11-25 10:39:22', '', 10, 'https://mrarif.me/secureswipesolutions/?p=811', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(812, 1, '2025-11-25 10:39:22', '2025-11-25 10:39:22', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"#\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 10:39:22', '2025-11-25 10:39:22', '', 10, 'https://mrarif.me/secureswipesolutions/?p=812', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(867, 1, '2025-11-25 11:34:55', '2025-11-25 11:34:55', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:34:55', '2025-11-25 11:34:55', '', 10, 'https://mrarif.me/secureswipesolutions/?p=867', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(813, 1, '2025-11-25 10:39:23', '2025-11-25 10:39:23', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 10:39:23', '2025-11-25 10:39:23', '', 10, 'https://mrarif.me/secureswipesolutions/?p=813', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(814, 1, '2025-11-25 10:50:57', '2025-11-25 10:50:57', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 10:50:57', '2025-11-25 10:50:57', '', 10, 'https://mrarif.me/secureswipesolutions/?p=814', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(815, 1, '2025-11-25 10:50:57', '2025-11-25 10:50:57', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 10:50:57', '2025-11-25 10:50:57', '', 10, 'https://mrarif.me/secureswipesolutions/?p=815', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(816, 1, '2025-11-25 10:50:58', '2025-11-25 10:50:58', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 10:50:58', '2025-11-25 10:50:58', '', 10, 'https://mrarif.me/secureswipesolutions/?p=816', 0, 'revision', '', 0),
(817, 1, '2025-11-25 10:54:44', '2025-11-25 10:54:44', '<h5>Quick Link</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/services-snapshot/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services Snapshot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Why Choose Us\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/how-it-works/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										How It Works\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/faqs/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										FAQs\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Contact Us\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n											<a href=\"tel:8182628674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										Call us (818) 262-8674\n											</a>\n									</li>\n								<li>\n											<a href=\"http://mailto;admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Los%20Angeles&#038;t=m&#038;z=12&#038;output=embed&#038;iwloc=near\"\n					title=\"Los Angeles\"\n					aria-label=\"Los Angeles\"\n			></iframe>\n				Copyright ©2025 - All Rights Reserved.', 'Elementor Footer #369', '', 'inherit', 'closed', 'closed', '', '369-revision-v1', '', '', '2025-11-25 10:54:44', '2025-11-25 10:54:44', '', 369, 'https://mrarif.me/secureswipesolutions/?p=817', 0, 'revision', '', 0),
(818, 1, '2025-11-25 10:59:16', '2025-11-25 10:59:16', '', 'Hubspot image (3)-3', '', 'inherit', 'open', 'closed', '', 'hubspot-image-3-3', '', '', '2025-11-25 10:59:16', '2025-11-25 10:59:16', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Hubspot-image-3-3.webp', 0, 'attachment', 'image/webp', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(819, 1, '2025-11-25 10:59:36', '2025-11-25 10:59:36', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 10:59:36', '2025-11-25 10:59:36', '', 10, 'https://mrarif.me/secureswipesolutions/?p=819', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(820, 1, '2025-11-25 10:59:36', '2025-11-25 10:59:36', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 10:59:36', '2025-11-25 10:59:36', '', 10, 'https://mrarif.me/secureswipesolutions/?p=820', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(821, 1, '2025-11-25 10:59:37', '2025-11-25 10:59:37', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 10:59:37', '2025-11-25 10:59:37', '', 10, 'https://mrarif.me/secureswipesolutions/?p=821', 0, 'revision', '', 0),
(822, 1, '2025-11-25 11:04:00', '2025-11-25 11:04:00', '', 'New Project (76)', '', 'inherit', 'open', 'closed', '', 'new-project-76', '', '', '2025-11-25 11:04:00', '2025-11-25 11:04:00', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-76.jpg', 0, 'attachment', 'image/jpeg', 0),
(823, 1, '2025-11-25 11:05:18', '2025-11-25 11:05:18', '', 'New Project (77)', '', 'inherit', 'open', 'closed', '', 'new-project-77', '', '', '2025-11-25 11:05:18', '2025-11-25 11:05:18', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-77.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(824, 1, '2025-11-25 11:05:30', '2025-11-25 11:05:30', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:05:30', '2025-11-25 11:05:30', '', 10, 'https://mrarif.me/secureswipesolutions/?p=824', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(825, 1, '2025-11-25 11:05:31', '2025-11-25 11:05:31', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:05:31', '2025-11-25 11:05:31', '', 10, 'https://mrarif.me/secureswipesolutions/?p=825', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(826, 1, '2025-11-25 11:05:31', '2025-11-25 11:05:31', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:05:31', '2025-11-25 11:05:31', '', 10, 'https://mrarif.me/secureswipesolutions/?p=826', 0, 'revision', '', 0),
(827, 1, '2025-11-25 11:07:51', '2025-11-25 11:07:51', '', 'dfg', '', 'inherit', 'open', 'closed', '', 'dfg', '', '', '2025-11-25 11:07:51', '2025-11-25 11:07:51', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/dfg.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(828, 1, '2025-11-25 11:08:02', '2025-11-25 11:08:02', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:08:02', '2025-11-25 11:08:02', '', 10, 'https://mrarif.me/secureswipesolutions/?p=828', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(829, 1, '2025-11-25 11:08:02', '2025-11-25 11:08:02', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:08:02', '2025-11-25 11:08:02', '', 10, 'https://mrarif.me/secureswipesolutions/?p=829', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(830, 1, '2025-11-25 11:08:03', '2025-11-25 11:08:03', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:08:03', '2025-11-25 11:08:03', '', 10, 'https://mrarif.me/secureswipesolutions/?p=830', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(831, 1, '2025-11-25 11:08:11', '2025-11-25 11:08:11', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:08:11', '2025-11-25 11:08:11', '', 10, 'https://mrarif.me/secureswipesolutions/?p=831', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(832, 1, '2025-11-25 11:08:11', '2025-11-25 11:08:11', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:08:11', '2025-11-25 11:08:11', '', 10, 'https://mrarif.me/secureswipesolutions/?p=832', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(833, 1, '2025-11-25 11:08:12', '2025-11-25 11:08:12', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:08:12', '2025-11-25 11:08:12', '', 10, 'https://mrarif.me/secureswipesolutions/?p=833', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(834, 1, '2025-11-25 11:10:41', '2025-11-25 11:10:41', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:10:41', '2025-11-25 11:10:41', '', 10, 'https://mrarif.me/secureswipesolutions/?p=834', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(835, 1, '2025-11-25 11:10:41', '2025-11-25 11:10:41', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact Us</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:10:41', '2025-11-25 11:10:41', '', 10, 'https://mrarif.me/secureswipesolutions/?p=835', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(836, 1, '2025-11-25 11:10:42', '2025-11-25 11:10:42', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:10:42', '2025-11-25 11:10:42', '', 10, 'https://mrarif.me/secureswipesolutions/?p=836', 0, 'revision', '', 0),
(837, 1, '2025-11-25 11:11:13', '2025-11-25 11:11:13', '<img width=\"1500\" height=\"997\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-300x199.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-768x510.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m32.285 314.16-7.187 12.45c-2.208 3.823-7.105 5.136-10.929 2.928-3.823-2.208-5.135-7.105-2.928-10.928l17.318-29.996c2.209-3.826 7.102-5.137 10.928-2.928l29.995 17.318c3.824 2.208 5.136 7.104 2.929 10.928-2.208 3.824-7.105 5.136-10.929 2.928l-14.065-8.12c24.039 96.315 111.204 167.754 214.92 167.754 122.246 0 221.494-99.248 221.494-221.494s-99.248-221.494-221.494-221.494c-108.701 0-199.221 78.47-217.943 181.807-.787 4.345-4.953 7.233-9.298 6.446-4.344-.787-7.233-4.953-6.445-9.298 20.075-110.805 117.13-194.955 233.686-194.955 131.076 0 237.494 106.418 237.494 237.494s-106.418 237.494-237.494 237.494c-110.654 0-203.731-75.842-230.052-178.334zm322.08-139.767h-42.127v-23.243c0-27.81-22.524-50.675-49.882-50.675-27.357 0-49.881 22.865-49.881 50.675v23.243h-42.166v-23.243c0-51.387 41.425-93.439 92.047-93.439 50.623 0 92.009 42.052 92.009 93.439zm-204.672 16h225.326c9.275 0 16.797 7.675 16.797 17.051v181.815c0 9.415-7.522 17.05-16.797 17.05h-225.326c-9.274 0-16.835-7.635-16.835-17.05v-181.815c0-9.376 7.561-17.051 16.835-17.051zm98.043 117.762-24.865-24.865c-6.44-6.44-16.897-6.44-23.337 0-6.441 6.473-6.441 16.897 0 23.338l36.55 36.583c6.44 6.441 16.897 6.441 23.338 0 22.043-22.043 43.82-44.318 65.764-66.461 6.407-6.473 6.374-16.897-.066-23.305-6.441-6.407-16.898-6.373-23.305.067z\"></path></svg>				\n									<h5>\n							Secure Swipe Solutions						\n					</h5>\n									<p>\n						provides reliable ATM placement services that help small and\nmedium businesses save time, boost cashflow, and delivers an enhanced customer\nexperience (without the headaches or hidden fees). 					</p>', 'Why Choose Us', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2025-11-25 11:11:13', '2025-11-25 11:11:13', '', 27, 'https://mrarif.me/secureswipesolutions/?p=837', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(838, 1, '2025-11-25 11:11:13', '2025-11-25 11:11:13', '<img width=\"1500\" height=\"997\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-300x199.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/9248099-1-768x510.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m32.285 314.16-7.187 12.45c-2.208 3.823-7.105 5.136-10.929 2.928-3.823-2.208-5.135-7.105-2.928-10.928l17.318-29.996c2.209-3.826 7.102-5.137 10.928-2.928l29.995 17.318c3.824 2.208 5.136 7.104 2.929 10.928-2.208 3.824-7.105 5.136-10.929 2.928l-14.065-8.12c24.039 96.315 111.204 167.754 214.92 167.754 122.246 0 221.494-99.248 221.494-221.494s-99.248-221.494-221.494-221.494c-108.701 0-199.221 78.47-217.943 181.807-.787 4.345-4.953 7.233-9.298 6.446-4.344-.787-7.233-4.953-6.445-9.298 20.075-110.805 117.13-194.955 233.686-194.955 131.076 0 237.494 106.418 237.494 237.494s-106.418 237.494-237.494 237.494c-110.654 0-203.731-75.842-230.052-178.334zm322.08-139.767h-42.127v-23.243c0-27.81-22.524-50.675-49.882-50.675-27.357 0-49.881 22.865-49.881 50.675v23.243h-42.166v-23.243c0-51.387 41.425-93.439 92.047-93.439 50.623 0 92.009 42.052 92.009 93.439zm-204.672 16h225.326c9.275 0 16.797 7.675 16.797 17.051v181.815c0 9.415-7.522 17.05-16.797 17.05h-225.326c-9.274 0-16.835-7.635-16.835-17.05v-181.815c0-9.376 7.561-17.051 16.835-17.051zm98.043 117.762-24.865-24.865c-6.44-6.44-16.897-6.44-23.337 0-6.441 6.473-6.441 16.897 0 23.338l36.55 36.583c6.44 6.441 16.897 6.441 23.338 0 22.043-22.043 43.82-44.318 65.764-66.461 6.407-6.473 6.374-16.897-.066-23.305-6.441-6.407-16.898-6.373-23.305.067z\"></path></svg>				\n									<h5>\n							Secure Swipe Solutions						\n					</h5>\n									<p>\n						provides reliable ATM placement services that help small and\nmedium businesses save time, boost cashflow, and delivers an enhanced customer\nexperience (without the headaches or hidden fees). 					</p>', 'Why Choose Us', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2025-11-25 11:11:13', '2025-11-25 11:11:13', '', 27, 'https://mrarif.me/secureswipesolutions/?p=838', 0, 'revision', '', 0),
(840, 1, '2025-11-25 11:12:15', '2025-11-25 11:12:15', '', 'atm (2)', '', 'inherit', 'open', 'closed', '', 'atm-2', '', '', '2025-11-25 11:12:15', '2025-11-25 11:12:15', '', 27, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(841, 1, '2025-11-25 11:15:42', '2025-11-25 11:15:42', '<img width=\"626\" height=\"417\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/dfg.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/dfg.jpg 626w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/dfg-300x200.jpg 300w\" sizes=\"(max-width: 626px) 100vw, 626px\" />																<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m32.285 314.16-7.187 12.45c-2.208 3.823-7.105 5.136-10.929 2.928-3.823-2.208-5.135-7.105-2.928-10.928l17.318-29.996c2.209-3.826 7.102-5.137 10.928-2.928l29.995 17.318c3.824 2.208 5.136 7.104 2.929 10.928-2.208 3.824-7.105 5.136-10.929 2.928l-14.065-8.12c24.039 96.315 111.204 167.754 214.92 167.754 122.246 0 221.494-99.248 221.494-221.494s-99.248-221.494-221.494-221.494c-108.701 0-199.221 78.47-217.943 181.807-.787 4.345-4.953 7.233-9.298 6.446-4.344-.787-7.233-4.953-6.445-9.298 20.075-110.805 117.13-194.955 233.686-194.955 131.076 0 237.494 106.418 237.494 237.494s-106.418 237.494-237.494 237.494c-110.654 0-203.731-75.842-230.052-178.334zm322.08-139.767h-42.127v-23.243c0-27.81-22.524-50.675-49.882-50.675-27.357 0-49.881 22.865-49.881 50.675v23.243h-42.166v-23.243c0-51.387 41.425-93.439 92.047-93.439 50.623 0 92.009 42.052 92.009 93.439zm-204.672 16h225.326c9.275 0 16.797 7.675 16.797 17.051v181.815c0 9.415-7.522 17.05-16.797 17.05h-225.326c-9.274 0-16.835-7.635-16.835-17.05v-181.815c0-9.376 7.561-17.051 16.835-17.051zm98.043 117.762-24.865-24.865c-6.44-6.44-16.897-6.44-23.337 0-6.441 6.473-6.441 16.897 0 23.338l36.55 36.583c6.44 6.441 16.897 6.441 23.338 0 22.043-22.043 43.82-44.318 65.764-66.461 6.407-6.473 6.374-16.897-.066-23.305-6.441-6.407-16.898-6.373-23.305.067z\"></path></svg>				\n									<h5>\n							Secure Swipe Solutions						\n					</h5>\n									<p>\n						provides reliable ATM placement services that help small and\nmedium businesses save time, boost cashflow, and delivers an enhanced customer\nexperience (without the headaches or hidden fees). 					</p>', 'Why Choose Us', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2025-11-25 11:15:42', '2025-11-25 11:15:42', '', 27, 'https://mrarif.me/secureswipesolutions/?p=841', 0, 'revision', '', 0),
(842, 1, '2025-11-25 11:15:43', '2025-11-25 11:15:43', '<img width=\"626\" height=\"417\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/dfg.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/dfg.jpg 626w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/dfg-300x200.jpg 300w\" sizes=\"(max-width: 626px) 100vw, 626px\" />																<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m32.285 314.16-7.187 12.45c-2.208 3.823-7.105 5.136-10.929 2.928-3.823-2.208-5.135-7.105-2.928-10.928l17.318-29.996c2.209-3.826 7.102-5.137 10.928-2.928l29.995 17.318c3.824 2.208 5.136 7.104 2.929 10.928-2.208 3.824-7.105 5.136-10.929 2.928l-14.065-8.12c24.039 96.315 111.204 167.754 214.92 167.754 122.246 0 221.494-99.248 221.494-221.494s-99.248-221.494-221.494-221.494c-108.701 0-199.221 78.47-217.943 181.807-.787 4.345-4.953 7.233-9.298 6.446-4.344-.787-7.233-4.953-6.445-9.298 20.075-110.805 117.13-194.955 233.686-194.955 131.076 0 237.494 106.418 237.494 237.494s-106.418 237.494-237.494 237.494c-110.654 0-203.731-75.842-230.052-178.334zm322.08-139.767h-42.127v-23.243c0-27.81-22.524-50.675-49.882-50.675-27.357 0-49.881 22.865-49.881 50.675v23.243h-42.166v-23.243c0-51.387 41.425-93.439 92.047-93.439 50.623 0 92.009 42.052 92.009 93.439zm-204.672 16h225.326c9.275 0 16.797 7.675 16.797 17.051v181.815c0 9.415-7.522 17.05-16.797 17.05h-225.326c-9.274 0-16.835-7.635-16.835-17.05v-181.815c0-9.376 7.561-17.051 16.835-17.051zm98.043 117.762-24.865-24.865c-6.44-6.44-16.897-6.44-23.337 0-6.441 6.473-6.441 16.897 0 23.338l36.55 36.583c6.44 6.441 16.897 6.441 23.338 0 22.043-22.043 43.82-44.318 65.764-66.461 6.407-6.473 6.374-16.897-.066-23.305-6.441-6.407-16.898-6.373-23.305.067z\"></path></svg>				\n									<h5>\n							Secure Swipe Solutions						\n					</h5>\n									<p>\n						provides reliable ATM placement services that help small and\nmedium businesses save time, boost cashflow, and delivers an enhanced customer\nexperience (without the headaches or hidden fees). 					</p>', 'Why Choose Us', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2025-11-25 11:15:43', '2025-11-25 11:15:43', '', 27, 'https://mrarif.me/secureswipesolutions/?p=842', 0, 'revision', '', 0),
(843, 1, '2025-11-25 11:15:43', '2025-11-25 11:15:43', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-2.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-2.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-2-300x300.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-2-150x150.jpg 150w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-2-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m32.285 314.16-7.187 12.45c-2.208 3.823-7.105 5.136-10.929 2.928-3.823-2.208-5.135-7.105-2.928-10.928l17.318-29.996c2.209-3.826 7.102-5.137 10.928-2.928l29.995 17.318c3.824 2.208 5.136 7.104 2.929 10.928-2.208 3.824-7.105 5.136-10.929 2.928l-14.065-8.12c24.039 96.315 111.204 167.754 214.92 167.754 122.246 0 221.494-99.248 221.494-221.494s-99.248-221.494-221.494-221.494c-108.701 0-199.221 78.47-217.943 181.807-.787 4.345-4.953 7.233-9.298 6.446-4.344-.787-7.233-4.953-6.445-9.298 20.075-110.805 117.13-194.955 233.686-194.955 131.076 0 237.494 106.418 237.494 237.494s-106.418 237.494-237.494 237.494c-110.654 0-203.731-75.842-230.052-178.334zm322.08-139.767h-42.127v-23.243c0-27.81-22.524-50.675-49.882-50.675-27.357 0-49.881 22.865-49.881 50.675v23.243h-42.166v-23.243c0-51.387 41.425-93.439 92.047-93.439 50.623 0 92.009 42.052 92.009 93.439zm-204.672 16h225.326c9.275 0 16.797 7.675 16.797 17.051v181.815c0 9.415-7.522 17.05-16.797 17.05h-225.326c-9.274 0-16.835-7.635-16.835-17.05v-181.815c0-9.376 7.561-17.051 16.835-17.051zm98.043 117.762-24.865-24.865c-6.44-6.44-16.897-6.44-23.337 0-6.441 6.473-6.441 16.897 0 23.338l36.55 36.583c6.44 6.441 16.897 6.441 23.338 0 22.043-22.043 43.82-44.318 65.764-66.461 6.407-6.473 6.374-16.897-.066-23.305-6.441-6.407-16.898-6.373-23.305.067z\"></path></svg>				\n									<h5>\n							Secure Swipe Solutions						\n					</h5>\n									<p>\n						provides reliable ATM placement services that help small and\nmedium businesses save time, boost cashflow, and delivers an enhanced customer\nexperience (without the headaches or hidden fees). 					</p>', 'Why Choose Us', '', 'inherit', 'closed', 'closed', '', '27-revision-v1', '', '', '2025-11-25 11:15:43', '2025-11-25 11:15:43', '', 27, 'https://mrarif.me/secureswipesolutions/?p=843', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(844, 1, '2025-11-25 11:16:36', '2025-11-25 11:16:36', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:16:36', '2025-11-25 11:16:36', '', 10, 'https://mrarif.me/secureswipesolutions/?p=844', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(845, 1, '2025-11-25 11:16:37', '2025-11-25 11:16:37', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:16:37', '2025-11-25 11:16:37', '', 10, 'https://mrarif.me/secureswipesolutions/?p=845', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(846, 1, '2025-11-25 11:16:37', '2025-11-25 11:16:37', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:16:37', '2025-11-25 11:16:37', '', 10, 'https://mrarif.me/secureswipesolutions/?p=846', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(847, 1, '2025-11-25 11:21:28', '2025-11-25 11:21:28', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:21:28', '2025-11-25 11:21:28', '', 10, 'https://mrarif.me/secureswipesolutions/?p=847', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(848, 1, '2025-11-25 11:21:28', '2025-11-25 11:21:28', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Contact</h2>		Ready to oƯer your customers easy access to cash, at no cost to you? \n					<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:21:28', '2025-11-25 11:21:28', '', 10, 'https://mrarif.me/secureswipesolutions/?p=848', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(849, 1, '2025-11-25 11:21:29', '2025-11-25 11:21:29', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:21:29', '2025-11-25 11:21:29', '', 10, 'https://mrarif.me/secureswipesolutions/?p=849', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(850, 1, '2025-11-25 11:22:23', '2025-11-25 11:22:23', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:22:23', '2025-11-25 11:22:23', '', 10, 'https://mrarif.me/secureswipesolutions/?p=850', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(851, 1, '2025-11-25 11:22:23', '2025-11-25 11:22:23', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:22:23', '2025-11-25 11:22:23', '', 10, 'https://mrarif.me/secureswipesolutions/?p=851', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(852, 1, '2025-11-25 11:22:23', '2025-11-25 11:22:23', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:22:23', '2025-11-25 11:22:23', '', 10, 'https://mrarif.me/secureswipesolutions/?p=852', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(853, 1, '2025-11-25 11:23:11', '2025-11-25 11:23:11', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:23:11', '2025-11-25 11:23:11', '', 10, 'https://mrarif.me/secureswipesolutions/?p=853', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(854, 1, '2025-11-25 11:23:12', '2025-11-25 11:23:12', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:23:12', '2025-11-25 11:23:12', '', 10, 'https://mrarif.me/secureswipesolutions/?p=854', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(855, 1, '2025-11-25 11:23:12', '2025-11-25 11:23:12', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Ready to offer your customers easy access to cash, at no cost to you?</h2>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:23:12', '2025-11-25 11:23:12', '', 10, 'https://mrarif.me/secureswipesolutions/?p=855', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(856, 1, '2025-11-25 11:23:55', '2025-11-25 11:23:55', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Ready to offer your customers easy access to cash, at no cost to you?</h2>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:23:55', '2025-11-25 11:23:55', '', 10, 'https://mrarif.me/secureswipesolutions/?p=856', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(857, 1, '2025-11-25 11:23:55', '2025-11-25 11:23:55', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h2>Ready to offer your customers easy access to cash, at no cost to you?</h2>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:23:55', '2025-11-25 11:23:55', '', 10, 'https://mrarif.me/secureswipesolutions/?p=857', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(858, 1, '2025-11-25 11:23:56', '2025-11-25 11:23:56', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:23:56', '2025-11-25 11:23:56', '', 10, 'https://mrarif.me/secureswipesolutions/?p=858', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(859, 1, '2025-11-25 11:25:23', '2025-11-25 11:25:23', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:25:23', '2025-11-25 11:25:23', '', 10, 'https://mrarif.me/secureswipesolutions/?p=859', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(860, 1, '2025-11-25 11:25:23', '2025-11-25 11:25:23', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:25:23', '2025-11-25 11:25:23', '', 10, 'https://mrarif.me/secureswipesolutions/?p=860', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(861, 1, '2025-11-25 11:25:24', '2025-11-25 11:25:24', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:25:24', '2025-11-25 11:25:24', '', 10, 'https://mrarif.me/secureswipesolutions/?p=861', 0, 'revision', '', 0),
(862, 1, '2025-11-25 11:32:18', '2025-11-25 11:32:18', '', 'payphone-that-is-black-box (1)', '', 'inherit', 'open', 'closed', '', 'payphone-that-is-black-box-1', '', '', '2025-11-25 11:32:18', '2025-11-25 11:32:18', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/payphone-that-is-black-box-1.png', 0, 'attachment', 'image/png', 0),
(868, 1, '2025-11-25 11:48:39', '2025-11-25 11:48:39', '', '15784592 (1)', '', 'inherit', 'open', 'closed', '', '15784592-1', '', '', '2025-11-25 11:48:39', '2025-11-25 11:48:39', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(869, 1, '2025-11-25 11:48:55', '2025-11-25 11:48:55', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:48:55', '2025-11-25 11:48:55', '', 10, 'https://mrarif.me/secureswipesolutions/?p=869', 0, 'revision', '', 0),
(864, 1, '2025-11-25 11:34:35', '2025-11-25 11:34:35', '', 'atm', '', 'inherit', 'open', 'closed', '', 'atm-3', '', '', '2025-11-25 11:34:35', '2025-11-25 11:34:35', '', 10, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(865, 1, '2025-11-25 11:34:54', '2025-11-25 11:34:54', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:34:54', '2025-11-25 11:34:54', '', 10, 'https://mrarif.me/secureswipesolutions/?p=865', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(866, 1, '2025-11-25 11:34:54', '2025-11-25 11:34:54', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"410\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview.png 410w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/clean__modern_ATM_machines_-removebg-preview-202x300.png 202w\" sizes=\"(max-width: 410px) 100vw, 410px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:34:54', '2025-11-25 11:34:54', '', 10, 'https://mrarif.me/secureswipesolutions/?p=866', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(870, 1, '2025-11-25 11:48:55', '2025-11-25 11:48:55', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:48:55', '2025-11-25 11:48:55', '', 10, 'https://mrarif.me/secureswipesolutions/?p=870', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(871, 1, '2025-11-25 11:48:56', '2025-11-25 11:48:56', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:48:56', '2025-11-25 11:48:56', '', 10, 'https://mrarif.me/secureswipesolutions/?p=871', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(872, 1, '2025-11-25 11:49:51', '2025-11-25 11:49:51', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:49:51', '2025-11-25 11:49:51', '', 10, 'https://mrarif.me/secureswipesolutions/?p=872', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(873, 1, '2025-11-25 11:49:52', '2025-11-25 11:49:52', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:49:52', '2025-11-25 11:49:52', '', 10, 'https://mrarif.me/secureswipesolutions/?p=873', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(874, 1, '2025-11-25 11:49:52', '2025-11-25 11:49:52', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 11:49:52', '2025-11-25 11:49:52', '', 10, 'https://mrarif.me/secureswipesolutions/?p=874', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(880, 1, '2025-11-25 12:03:37', '2025-11-25 12:03:37', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 12:03:37', '2025-11-25 12:03:37', '', 10, 'https://mrarif.me/secureswipesolutions/?p=880', 0, 'revision', '', 0),
(876, 1, '2025-11-25 12:01:44', '2025-11-25 12:01:44', '{\n    \"astra-settings[global-color-palette]\": {\n        \"value\": {\n            \"palette\": [\n                \"#4a9924\",\n                \"#b0e94f\",\n                \"#000b1b\",\n                \"#4b4b53\",\n                \"#FFFFFF\",\n                \"#F0F5FA\",\n                \"#111111\",\n                \"#D1D5DB\",\n                \"#111111\"\n            ],\n            \"flag\": true\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-25 12:01:44\"\n    },\n    \"astra-color-palettes\": {\n        \"value\": {\n            \"currentPalette\": \"palette_1\",\n            \"palettes\": {\n                \"palette_1\": [\n                    \"#4a9924\",\n                    \"#b0e94f\",\n                    \"#000b1b\",\n                    \"#4b4b53\",\n                    \"#FFFFFF\",\n                    \"#F0F5FA\",\n                    \"#111111\",\n                    \"#D1D5DB\",\n                    \"#111111\"\n                ],\n                \"palette_2\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"palette_3\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"palette_4\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presets\": {\n                \"Oak\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"Viola\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"Cedar\": [\n                    \"#DD183B\",\n                    \"#CC1939\",\n                    \"#0F172A\",\n                    \"#3A3A3A\",\n                    \"#FFFFFF\",\n                    \"#FFEDE6\",\n                    \"#140609\",\n                    \"#FFD1BF\",\n                    \"#222222\"\n                ],\n                \"Willow\": [\n                    \"#54B435\",\n                    \"#379237\",\n                    \"#0F172A\",\n                    \"#2F3B40\",\n                    \"#FFFFFF\",\n                    \"#EDFBE2\",\n                    \"#0C1406\",\n                    \"#D5EAD8\",\n                    \"#222222\"\n                ],\n                \"Lily\": [\n                    \"#DCA54A\",\n                    \"#D09A40\",\n                    \"#0F172A\",\n                    \"#4A4A4A\",\n                    \"#FFFFFF\",\n                    \"#FAF5E5\",\n                    \"#141004\",\n                    \"#F0E6C5\",\n                    \"#222222\"\n                ],\n                \"Rose\": [\n                    \"#FB5FAB\",\n                    \"#EA559D\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FCEEF5\",\n                    \"#140610\",\n                    \"#FAD8E9\",\n                    \"#222222\"\n                ],\n                \"Sage\": [\n                    \"#1B9C85\",\n                    \"#178E79\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#EDF6EE\",\n                    \"#06140C\",\n                    \"#D4F3D7\",\n                    \"#222222\"\n                ],\n                \"Flare\": [\n                    \"#FD9800\",\n                    \"#E98C00\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FEF9E1\",\n                    \"#141006\",\n                    \"#F9F0C8\",\n                    \"#222222\"\n                ],\n                \"Maple\": [\n                    \"#FF6210\",\n                    \"#F15808\",\n                    \"#1C0D0A\",\n                    \"#353535\",\n                    \"#FFFFFF\",\n                    \"#FEF1E4\",\n                    \"#140B06\",\n                    \"#E5D7D1\",\n                    \"#222222\"\n                ],\n                \"Birch\": [\n                    \"#737880\",\n                    \"#65696F\",\n                    \"#151616\",\n                    \"#393C40\",\n                    \"#FFFFFF\",\n                    \"#F6F6F6\",\n                    \"#232529\",\n                    \"#F1F0F0\",\n                    \"#222222\"\n                ],\n                \"Dark\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presetNames\": {\n                \"palette_1\": null,\n                \"palette_2\": \"Oak\",\n                \"palette_3\": \"Viola\",\n                \"palette_4\": \"Dark\"\n            },\n            \"flag\": true\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-25 12:01:44\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'f3f9ce94-1e04-46c9-b7ac-495371fb3ec4', '', '', '2025-11-25 12:01:44', '2025-11-25 12:01:44', '', 0, 'https://mrarif.me/secureswipesolutions/f3f9ce94-1e04-46c9-b7ac-495371fb3ec4/', 0, 'customize_changeset', '', 0),
(877, 1, '2025-11-25 12:02:51', '2025-11-25 12:02:51', '{\n    \"astra-settings[global-color-palette]\": {\n        \"value\": {\n            \"palette\": [\n                \"#4a9924\",\n                \"#88ca3f\",\n                \"#000b1b\",\n                \"#4b4b53\",\n                \"#FFFFFF\",\n                \"#F0F5FA\",\n                \"#111111\",\n                \"#D1D5DB\",\n                \"#111111\"\n            ],\n            \"flag\": false\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-25 12:02:51\"\n    },\n    \"astra-color-palettes\": {\n        \"value\": {\n            \"currentPalette\": \"palette_1\",\n            \"palettes\": {\n                \"palette_1\": [\n                    \"#4a9924\",\n                    \"#88ca3f\",\n                    \"#000b1b\",\n                    \"#4b4b53\",\n                    \"#FFFFFF\",\n                    \"#F0F5FA\",\n                    \"#111111\",\n                    \"#D1D5DB\",\n                    \"#111111\"\n                ],\n                \"palette_2\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"palette_3\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"palette_4\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presets\": {\n                \"Oak\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"Viola\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"Cedar\": [\n                    \"#DD183B\",\n                    \"#CC1939\",\n                    \"#0F172A\",\n                    \"#3A3A3A\",\n                    \"#FFFFFF\",\n                    \"#FFEDE6\",\n                    \"#140609\",\n                    \"#FFD1BF\",\n                    \"#222222\"\n                ],\n                \"Willow\": [\n                    \"#54B435\",\n                    \"#379237\",\n                    \"#0F172A\",\n                    \"#2F3B40\",\n                    \"#FFFFFF\",\n                    \"#EDFBE2\",\n                    \"#0C1406\",\n                    \"#D5EAD8\",\n                    \"#222222\"\n                ],\n                \"Lily\": [\n                    \"#DCA54A\",\n                    \"#D09A40\",\n                    \"#0F172A\",\n                    \"#4A4A4A\",\n                    \"#FFFFFF\",\n                    \"#FAF5E5\",\n                    \"#141004\",\n                    \"#F0E6C5\",\n                    \"#222222\"\n                ],\n                \"Rose\": [\n                    \"#FB5FAB\",\n                    \"#EA559D\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FCEEF5\",\n                    \"#140610\",\n                    \"#FAD8E9\",\n                    \"#222222\"\n                ],\n                \"Sage\": [\n                    \"#1B9C85\",\n                    \"#178E79\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#EDF6EE\",\n                    \"#06140C\",\n                    \"#D4F3D7\",\n                    \"#222222\"\n                ],\n                \"Flare\": [\n                    \"#FD9800\",\n                    \"#E98C00\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FEF9E1\",\n                    \"#141006\",\n                    \"#F9F0C8\",\n                    \"#222222\"\n                ],\n                \"Maple\": [\n                    \"#FF6210\",\n                    \"#F15808\",\n                    \"#1C0D0A\",\n                    \"#353535\",\n                    \"#FFFFFF\",\n                    \"#FEF1E4\",\n                    \"#140B06\",\n                    \"#E5D7D1\",\n                    \"#222222\"\n                ],\n                \"Birch\": [\n                    \"#737880\",\n                    \"#65696F\",\n                    \"#151616\",\n                    \"#393C40\",\n                    \"#FFFFFF\",\n                    \"#F6F6F6\",\n                    \"#232529\",\n                    \"#F1F0F0\",\n                    \"#222222\"\n                ],\n                \"Dark\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presetNames\": {\n                \"palette_1\": null,\n                \"palette_2\": \"Oak\",\n                \"palette_3\": \"Viola\",\n                \"palette_4\": \"Dark\"\n            },\n            \"flag\": false\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2025-11-25 12:02:51\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'c1fa0c5a-d4a7-4664-8884-edd02531a669', '', '', '2025-11-25 12:02:51', '2025-11-25 12:02:51', '', 0, 'https://mrarif.me/secureswipesolutions/c1fa0c5a-d4a7-4664-8884-edd02531a669/', 0, 'customize_changeset', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(878, 1, '2025-11-25 12:03:37', '2025-11-25 12:03:37', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 12:03:37', '2025-11-25 12:03:37', '', 10, 'https://mrarif.me/secureswipesolutions/?p=878', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(879, 1, '2025-11-25 12:03:37', '2025-11-25 12:03:37', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 12:03:37', '2025-11-25 12:03:37', '', 10, 'https://mrarif.me/secureswipesolutions/?p=879', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(881, 1, '2025-11-25 12:04:03', '2025-11-25 12:04:03', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 12:04:03', '2025-11-25 12:04:03', '', 10, 'https://mrarif.me/secureswipesolutions/?p=881', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(882, 1, '2025-11-25 12:04:03', '2025-11-25 12:04:03', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 12:04:03', '2025-11-25 12:04:03', '', 10, 'https://mrarif.me/secureswipesolutions/?p=882', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(883, 1, '2025-11-25 12:04:04', '2025-11-25 12:04:04', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 12:04:04', '2025-11-25 12:04:04', '', 10, 'https://mrarif.me/secureswipesolutions/?p=883', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(884, 1, '2025-11-25 12:54:21', '2025-11-25 12:54:21', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 12:54:21', '2025-11-25 12:54:21', '', 10, 'https://mrarif.me/secureswipesolutions/?p=884', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(885, 1, '2025-11-25 12:54:22', '2025-11-25 12:54:22', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero eƯort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traƯic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 12:54:22', '2025-11-25 12:54:22', '', 10, 'https://mrarif.me/secureswipesolutions/?p=885', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(886, 1, '2025-11-25 12:54:22', '2025-11-25 12:54:22', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero effort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traffic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-25 12:54:22', '2025-11-25 12:54:22', '', 10, 'https://mrarif.me/secureswipesolutions/?p=886', 0, 'revision', '', 0),
(887, 1, '2025-11-25 12:55:46', '2025-11-25 12:55:46', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M63.457,49.62988a1.999,1.999,0,0,0-2.82715-.08691L38.59766,70.25488l-9.22754-8.67383a2,2,0,0,0-2.74023,2.91406L37.22754,74.457a2.00015,2.00015,0,0,0,2.74023,0l23.40234-22A1.99992,1.99992,0,0,0,63.457,49.62988Z\"></path><path d=\"M21.49121,39.81152a2.00029,2.00029,0,0,0-2.81152.30957,34.99343,34.99343,0,0,0-2.4834,3.52051,1.99947,1.99947,0,0,0,.65233,2.75195,2.02718,2.02718,0,0,0,2.752-.65234,31.08368,31.08368,0,0,1,2.2002-3.11816A2.00019,2.00019,0,0,0,21.49121,39.81152Z\"></path><path d=\"M52.53906,31.68945a2.02441,2.02441,0,0,0,2.376-1.53418,1.99948,1.99948,0,0,0-1.53418-2.376,34.75616,34.75616,0,0,0-4.26074-.64258,1.99993,1.99993,0,1,0-.35156,3.98438A30.76869,30.76869,0,0,1,52.53906,31.68945Z\"></path><path d=\"M11.60156,68.49414A2.00087,2.00087,0,0,0,13.56545,70.125a2.021,2.021,0,0,0,1.96776-2.36914,31.54123,31.54123,0,0,1-.47266-3.78711,2.00013,2.00013,0,1,0-3.99219.25391A35.42,35.42,0,0,0,11.60156,68.49414Z\"></path><path d=\"M76.03906,54.31641a1.98391,1.98391,0,0,0,.25055.56409c.61652-.2403,1.23193-.48346,1.86176-.691A7.663,7.663,0,0,1,79.351,51.368c-.22949-.72107-.47968-1.43652-.75525-2.13953a2.00044,2.00044,0,1,0-3.72461,1.46094A30.56134,30.56134,0,0,1,76.03906,54.31641Z\"></path><path d=\"M65.80762,35.52734a2.00052,2.00052,0,0,0-.56934-2.77051,35.21845,35.21845,0,0,0-3.73535-2.14453,1.99981,1.99981,0,0,0-1.77539,3.584,31.29353,31.29353,0,0,1,3.30957,1.90039A2.02462,2.02462,0,0,0,65.80762,35.52734Z\"></path><path d=\"M71.7832,38.33105a1.99952,1.99952,0,1,0-2.94531,2.70508A31.4367,31.4367,0,0,1,71.24217,43.999a2.03139,2.03139,0,0,0,2.79005.46389,1.99988,1.99988,0,0,0,.46387-2.79A35.26906,35.26906,0,0,0,71.7832,38.33105Z\"></path><path d=\"M13.18262,57.9707a2.01714,2.01714,0,0,0,2.32812-1.60547,30.998,30.998,0,0,1,.91992-3.70117,1.99985,1.99985,0,1,0-3.81445-1.20312,34.82591,34.82591,0,0,0-1.03906,4.18164A1.99871,1.99871,0,0,0,13.18262,57.9707Z\"></path><path d=\"M36.876,32.27437a1.91577,1.91577,0,0,0,.5517-.07418,30.98865,30.98865,0,0,1,3.72461-.82324,1.99969,1.99969,0,0,0-.61914-3.95117,35.03118,35.03118,0,0,0-4.207.92871A2.00054,2.00054,0,0,0,34.9541,30.8281,2.04073,2.04073,0,0,0,36.876,32.27437Z\"></path><path d=\"M46.02832,93c-.27441.02148-.63574-.00488-.9541-.01367a1.99991,1.99991,0,1,0-.11914,3.998c.3584.01074.71484.01074,1.0752.01563.808,0,1.62079-.03748,2.42957-.09387A7.67571,7.67571,0,0,1,48,94.28613V92.92975C47.34338,92.97137,46.68457,93,46.02832,93Z\"></path><path d=\"M37.54688,91.834a30.83649,30.83649,0,0,1-3.60059-1.2627,2,2,0,0,0-1.55469,3.68555A34.96388,34.96388,0,0,0,36.459,95.6836a2.02657,2.02657,0,0,0,2.46874-1.38086A2.00107,2.00107,0,0,0,37.54688,91.834Z\"></path><path d=\"M16.2666,80.47461a2.02966,2.02966,0,0,0,2.75488.6416,2.00116,2.00116,0,0,0,.6416-2.75488,31.00909,31.00909,0,0,1-1.8125-3.35547,1.9998,1.9998,0,1,0-3.62891,1.68164A35.261,35.261,0,0,0,16.2666,80.47461Z\"></path><path d=\"M24.94238,89.959a2.02558,2.02558,0,0,0,2.80078-.39258,1.99965,1.99965,0,0,0-.39258-2.80078,31.20992,31.20992,0,0,1-2.90039-2.48047,2.00006,2.00006,0,0,0-2.78125,2.875A35.09214,35.09214,0,0,0,24.94238,89.959Z\"></path><path d=\"M26.04784,37.70544a1.97083,1.97083,0,0,0,1.208-.3988,31.33317,31.33317,0,0,1,3.17285-2.11719,2.00037,2.00037,0,1,0-2.01367-3.457,35.27032,35.27032,0,0,0-3.5791,2.39062,1.99205,1.99205,0,0,0,1.2119,3.5824Z\"></path><path d=\"M46,104A42,42,0,1,1,85.59363,48.00537C85.634,48.00476,85.67334,48,85.71387,48h4.10059a46.0405,46.0405,0,0,0-9.92438-17.062l3.37164-3.37164a17.02613,17.02613,0,0,1,1.03612,1.48338,1.99985,1.99985,0,0,0,3.40431-2.09959,20.72153,20.72153,0,0,0-2.9068-3.699.31835.31835,0,0,0-.03516-.03723,19.006,19.006,0,0,0-3.73676-2.93176,1.99954,1.99954,0,1,0-2.04687,3.43555A14.52372,14.52372,0,0,1,80.445,24.72687L77.05884,28.113A45.8366,45.8366,0,0,0,52,16.39526V12h4a2.0001,2.0001,0,0,0,2-2V2a2.0001,2.0001,0,0,0-2-2H36a2.0001,2.0001,0,0,0-2,2v8a2.0001,2.0001,0,0,0,2,2h4v4.40405A45.85274,45.85274,0,0,0,14.93616,28.108L11.555,24.72687a14.52685,14.52685,0,0,1,1.46844-1.00909,1.99954,1.99954,0,0,0-2.04687-3.43555,19.13535,19.13535,0,0,0-3.751,2.94336c-.008.008-.01312.01758-.02094.02563a20.72153,20.72153,0,0,0-2.9068,3.699,1.99947,1.99947,0,0,0,.65234,2.752,2.02308,2.02308,0,0,0,2.752-.65234,17.01643,17.01643,0,0,1,1.03619-1.48334L12.108,30.93616a45.96878,45.96878,0,0,0,44.1402,75.89868,37.33789,37.33789,0,0,1-1.59467-3.73584A42.00487,42.00487,0,0,1,46,104Zm2-87.95532C47.33667,16.01617,46.67023,16,46,16c-.67072,0-1.33618.02222-2,.05078V12h4ZM38,8V4H54V8H38Z\"></path><path d=\"M124.28613,82H122.752a33.31979,33.31979,0,0,0-3.93359-9.50488l1.082-1.082a3.71858,3.71858,0,0,0,0-5.25293l-6.06055-6.06055a3.71681,3.71681,0,0,0-5.25293,0l-1.082,1.082A33.31979,33.31979,0,0,0,98,57.248V55.71387A3.718,3.718,0,0,0,94.28613,52H85.71387A3.718,3.718,0,0,0,82,55.71387V57.248a33.31979,33.31979,0,0,0-9.50488,3.93359l-1.082-1.082a3.71681,3.71681,0,0,0-5.25293,0l-6.06055,6.06055a3.71858,3.71858,0,0,0,0,5.25293l1.082,1.082A33.31979,33.31979,0,0,0,57.248,82H55.71387A3.718,3.718,0,0,0,52,85.71387v8.57227A3.718,3.718,0,0,0,55.71387,98H57.248a33.31979,33.31979,0,0,0,3.93359,9.50488l-1.082,1.082a3.71858,3.71858,0,0,0,0,5.25293l6.06152,6.06152a3.721,3.721,0,0,0,5.252-.001l1.082-1.082A33.31979,33.31979,0,0,0,82,122.752v1.53418A3.718,3.718,0,0,0,85.71387,128h8.57227A3.718,3.718,0,0,0,98,124.28613V122.752a33.31979,33.31979,0,0,0,9.50488-3.93359l1.083,1.083a3.721,3.721,0,0,0,5.252-.001l6.06055-6.06055a3.71858,3.71858,0,0,0,0-5.25293l-1.082-1.082A33.31979,33.31979,0,0,0,122.752,98h1.53418A3.718,3.718,0,0,0,128,94.28613V85.71387A3.718,3.718,0,0,0,124.28613,82ZM124,94h-2.86035a1.99951,1.99951,0,0,0-1.96387,1.624,29.42633,29.42633,0,0,1-4.56641,11.0332,1.99907,1.99907,0,0,0,.24121,2.53613l2.01953,2.02051-5.65625,5.65625-2.02051-2.01953a1.99907,1.99907,0,0,0-2.53613-.24121,29.42645,29.42645,0,0,1-11.0332,4.56641A1.99951,1.99951,0,0,0,94,121.13965V124H86v-2.86035a1.99951,1.99951,0,0,0-1.624-1.96387,29.42621,29.42621,0,0,1-11.0332-4.56641,2.00164,2.00164,0,0,0-2.53613.24121l-2.02051,2.01953-5.65625-5.65625,2.01953-2.02051a1.99907,1.99907,0,0,0,.24121-2.53613A29.42633,29.42633,0,0,1,60.82422,95.624,1.99951,1.99951,0,0,0,58.86035,94H56V86h2.86035a1.99951,1.99951,0,0,0,1.96387-1.624,29.42633,29.42633,0,0,1,4.56641-11.0332,1.99907,1.99907,0,0,0-.24121-2.53613l-2.01953-2.02051,5.65625-5.65625,2.02051,2.01953a1.99918,1.99918,0,0,0,2.53613.24121A29.42621,29.42621,0,0,1,84.376,60.82422,1.99951,1.99951,0,0,0,86,58.86035V56h8v2.86035a1.99951,1.99951,0,0,0,1.624,1.96387,29.42645,29.42645,0,0,1,11.0332,4.56641,1.99639,1.99639,0,0,0,2.53613-.24121l2.02051-2.01953,5.65625,5.65625-2.01953,2.02051a1.99907,1.99907,0,0,0-.24121,2.53613,29.42633,29.42633,0,0,1,4.56641,11.0332A1.99951,1.99951,0,0,0,121.13965,86H124Z\"></path><path d=\"M90,68a22,22,0,1,0,22,22A22.02489,22.02489,0,0,0,90,68Zm0,40a18,18,0,1,1,18-18A18.02094,18.02094,0,0,1,90,108Z\"></path></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 12:55:46', '2025-11-25 12:55:46', '', 761, 'https://mrarif.me/secureswipesolutions/?p=887', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(888, 1, '2025-11-25 12:55:46', '2025-11-25 12:55:46', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M63.457,49.62988a1.999,1.999,0,0,0-2.82715-.08691L38.59766,70.25488l-9.22754-8.67383a2,2,0,0,0-2.74023,2.91406L37.22754,74.457a2.00015,2.00015,0,0,0,2.74023,0l23.40234-22A1.99992,1.99992,0,0,0,63.457,49.62988Z\"></path><path d=\"M21.49121,39.81152a2.00029,2.00029,0,0,0-2.81152.30957,34.99343,34.99343,0,0,0-2.4834,3.52051,1.99947,1.99947,0,0,0,.65233,2.75195,2.02718,2.02718,0,0,0,2.752-.65234,31.08368,31.08368,0,0,1,2.2002-3.11816A2.00019,2.00019,0,0,0,21.49121,39.81152Z\"></path><path d=\"M52.53906,31.68945a2.02441,2.02441,0,0,0,2.376-1.53418,1.99948,1.99948,0,0,0-1.53418-2.376,34.75616,34.75616,0,0,0-4.26074-.64258,1.99993,1.99993,0,1,0-.35156,3.98438A30.76869,30.76869,0,0,1,52.53906,31.68945Z\"></path><path d=\"M11.60156,68.49414A2.00087,2.00087,0,0,0,13.56545,70.125a2.021,2.021,0,0,0,1.96776-2.36914,31.54123,31.54123,0,0,1-.47266-3.78711,2.00013,2.00013,0,1,0-3.99219.25391A35.42,35.42,0,0,0,11.60156,68.49414Z\"></path><path d=\"M76.03906,54.31641a1.98391,1.98391,0,0,0,.25055.56409c.61652-.2403,1.23193-.48346,1.86176-.691A7.663,7.663,0,0,1,79.351,51.368c-.22949-.72107-.47968-1.43652-.75525-2.13953a2.00044,2.00044,0,1,0-3.72461,1.46094A30.56134,30.56134,0,0,1,76.03906,54.31641Z\"></path><path d=\"M65.80762,35.52734a2.00052,2.00052,0,0,0-.56934-2.77051,35.21845,35.21845,0,0,0-3.73535-2.14453,1.99981,1.99981,0,0,0-1.77539,3.584,31.29353,31.29353,0,0,1,3.30957,1.90039A2.02462,2.02462,0,0,0,65.80762,35.52734Z\"></path><path d=\"M71.7832,38.33105a1.99952,1.99952,0,1,0-2.94531,2.70508A31.4367,31.4367,0,0,1,71.24217,43.999a2.03139,2.03139,0,0,0,2.79005.46389,1.99988,1.99988,0,0,0,.46387-2.79A35.26906,35.26906,0,0,0,71.7832,38.33105Z\"></path><path d=\"M13.18262,57.9707a2.01714,2.01714,0,0,0,2.32812-1.60547,30.998,30.998,0,0,1,.91992-3.70117,1.99985,1.99985,0,1,0-3.81445-1.20312,34.82591,34.82591,0,0,0-1.03906,4.18164A1.99871,1.99871,0,0,0,13.18262,57.9707Z\"></path><path d=\"M36.876,32.27437a1.91577,1.91577,0,0,0,.5517-.07418,30.98865,30.98865,0,0,1,3.72461-.82324,1.99969,1.99969,0,0,0-.61914-3.95117,35.03118,35.03118,0,0,0-4.207.92871A2.00054,2.00054,0,0,0,34.9541,30.8281,2.04073,2.04073,0,0,0,36.876,32.27437Z\"></path><path d=\"M46.02832,93c-.27441.02148-.63574-.00488-.9541-.01367a1.99991,1.99991,0,1,0-.11914,3.998c.3584.01074.71484.01074,1.0752.01563.808,0,1.62079-.03748,2.42957-.09387A7.67571,7.67571,0,0,1,48,94.28613V92.92975C47.34338,92.97137,46.68457,93,46.02832,93Z\"></path><path d=\"M37.54688,91.834a30.83649,30.83649,0,0,1-3.60059-1.2627,2,2,0,0,0-1.55469,3.68555A34.96388,34.96388,0,0,0,36.459,95.6836a2.02657,2.02657,0,0,0,2.46874-1.38086A2.00107,2.00107,0,0,0,37.54688,91.834Z\"></path><path d=\"M16.2666,80.47461a2.02966,2.02966,0,0,0,2.75488.6416,2.00116,2.00116,0,0,0,.6416-2.75488,31.00909,31.00909,0,0,1-1.8125-3.35547,1.9998,1.9998,0,1,0-3.62891,1.68164A35.261,35.261,0,0,0,16.2666,80.47461Z\"></path><path d=\"M24.94238,89.959a2.02558,2.02558,0,0,0,2.80078-.39258,1.99965,1.99965,0,0,0-.39258-2.80078,31.20992,31.20992,0,0,1-2.90039-2.48047,2.00006,2.00006,0,0,0-2.78125,2.875A35.09214,35.09214,0,0,0,24.94238,89.959Z\"></path><path d=\"M26.04784,37.70544a1.97083,1.97083,0,0,0,1.208-.3988,31.33317,31.33317,0,0,1,3.17285-2.11719,2.00037,2.00037,0,1,0-2.01367-3.457,35.27032,35.27032,0,0,0-3.5791,2.39062,1.99205,1.99205,0,0,0,1.2119,3.5824Z\"></path><path d=\"M46,104A42,42,0,1,1,85.59363,48.00537C85.634,48.00476,85.67334,48,85.71387,48h4.10059a46.0405,46.0405,0,0,0-9.92438-17.062l3.37164-3.37164a17.02613,17.02613,0,0,1,1.03612,1.48338,1.99985,1.99985,0,0,0,3.40431-2.09959,20.72153,20.72153,0,0,0-2.9068-3.699.31835.31835,0,0,0-.03516-.03723,19.006,19.006,0,0,0-3.73676-2.93176,1.99954,1.99954,0,1,0-2.04687,3.43555A14.52372,14.52372,0,0,1,80.445,24.72687L77.05884,28.113A45.8366,45.8366,0,0,0,52,16.39526V12h4a2.0001,2.0001,0,0,0,2-2V2a2.0001,2.0001,0,0,0-2-2H36a2.0001,2.0001,0,0,0-2,2v8a2.0001,2.0001,0,0,0,2,2h4v4.40405A45.85274,45.85274,0,0,0,14.93616,28.108L11.555,24.72687a14.52685,14.52685,0,0,1,1.46844-1.00909,1.99954,1.99954,0,0,0-2.04687-3.43555,19.13535,19.13535,0,0,0-3.751,2.94336c-.008.008-.01312.01758-.02094.02563a20.72153,20.72153,0,0,0-2.9068,3.699,1.99947,1.99947,0,0,0,.65234,2.752,2.02308,2.02308,0,0,0,2.752-.65234,17.01643,17.01643,0,0,1,1.03619-1.48334L12.108,30.93616a45.96878,45.96878,0,0,0,44.1402,75.89868,37.33789,37.33789,0,0,1-1.59467-3.73584A42.00487,42.00487,0,0,1,46,104Zm2-87.95532C47.33667,16.01617,46.67023,16,46,16c-.67072,0-1.33618.02222-2,.05078V12h4ZM38,8V4H54V8H38Z\"></path><path d=\"M124.28613,82H122.752a33.31979,33.31979,0,0,0-3.93359-9.50488l1.082-1.082a3.71858,3.71858,0,0,0,0-5.25293l-6.06055-6.06055a3.71681,3.71681,0,0,0-5.25293,0l-1.082,1.082A33.31979,33.31979,0,0,0,98,57.248V55.71387A3.718,3.718,0,0,0,94.28613,52H85.71387A3.718,3.718,0,0,0,82,55.71387V57.248a33.31979,33.31979,0,0,0-9.50488,3.93359l-1.082-1.082a3.71681,3.71681,0,0,0-5.25293,0l-6.06055,6.06055a3.71858,3.71858,0,0,0,0,5.25293l1.082,1.082A33.31979,33.31979,0,0,0,57.248,82H55.71387A3.718,3.718,0,0,0,52,85.71387v8.57227A3.718,3.718,0,0,0,55.71387,98H57.248a33.31979,33.31979,0,0,0,3.93359,9.50488l-1.082,1.082a3.71858,3.71858,0,0,0,0,5.25293l6.06152,6.06152a3.721,3.721,0,0,0,5.252-.001l1.082-1.082A33.31979,33.31979,0,0,0,82,122.752v1.53418A3.718,3.718,0,0,0,85.71387,128h8.57227A3.718,3.718,0,0,0,98,124.28613V122.752a33.31979,33.31979,0,0,0,9.50488-3.93359l1.083,1.083a3.721,3.721,0,0,0,5.252-.001l6.06055-6.06055a3.71858,3.71858,0,0,0,0-5.25293l-1.082-1.082A33.31979,33.31979,0,0,0,122.752,98h1.53418A3.718,3.718,0,0,0,128,94.28613V85.71387A3.718,3.718,0,0,0,124.28613,82ZM124,94h-2.86035a1.99951,1.99951,0,0,0-1.96387,1.624,29.42633,29.42633,0,0,1-4.56641,11.0332,1.99907,1.99907,0,0,0,.24121,2.53613l2.01953,2.02051-5.65625,5.65625-2.02051-2.01953a1.99907,1.99907,0,0,0-2.53613-.24121,29.42645,29.42645,0,0,1-11.0332,4.56641A1.99951,1.99951,0,0,0,94,121.13965V124H86v-2.86035a1.99951,1.99951,0,0,0-1.624-1.96387,29.42621,29.42621,0,0,1-11.0332-4.56641,2.00164,2.00164,0,0,0-2.53613.24121l-2.02051,2.01953-5.65625-5.65625,2.01953-2.02051a1.99907,1.99907,0,0,0,.24121-2.53613A29.42633,29.42633,0,0,1,60.82422,95.624,1.99951,1.99951,0,0,0,58.86035,94H56V86h2.86035a1.99951,1.99951,0,0,0,1.96387-1.624,29.42633,29.42633,0,0,1,4.56641-11.0332,1.99907,1.99907,0,0,0-.24121-2.53613l-2.01953-2.02051,5.65625-5.65625,2.02051,2.01953a1.99918,1.99918,0,0,0,2.53613.24121A29.42621,29.42621,0,0,1,84.376,60.82422,1.99951,1.99951,0,0,0,86,58.86035V56h8v2.86035a1.99951,1.99951,0,0,0,1.624,1.96387,29.42645,29.42645,0,0,1,11.0332,4.56641,1.99639,1.99639,0,0,0,2.53613-.24121l2.02051-2.01953,5.65625,5.65625-2.01953,2.02051a1.99907,1.99907,0,0,0-.24121,2.53613,29.42633,29.42633,0,0,1,4.56641,11.0332A1.99951,1.99951,0,0,0,121.13965,86H124Z\"></path><path d=\"M90,68a22,22,0,1,0,22,22A22.02489,22.02489,0,0,0,90,68Zm0,40a18,18,0,1,1,18-18A18.02094,18.02094,0,0,1,90,108Z\"></path></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traƯic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 12:55:46', '2025-11-25 12:55:46', '', 761, 'https://mrarif.me/secureswipesolutions/?p=888', 0, 'revision', '', 0),
(889, 1, '2025-11-25 12:55:47', '2025-11-25 12:55:47', '<h2>How It Works</h2>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><g><path d=\"m392.819 443.201c-1.498 0-2.992-.438-4.283-1.305l-67.457-45.297c-3.523-2.365-4.459-7.136-2.094-10.66 2.368-3.523 7.142-4.45 10.659-2.094l55.491 37.261v-36.706c0-4.243 3.439-7.682 7.683-7.682h33.902c17.079 0 30.973-13.894 30.973-30.973v-181.829c0-17.079-13.894-30.973-30.973-30.973h-41.636c-4.244 0-7.683-3.44-7.683-7.683s3.439-7.682 7.683-7.682h41.636c25.551 0 46.338 20.788 46.338 46.338v181.828c0 25.55-20.788 46.338-46.338 46.338h-26.22v43.437c0 2.838-1.564 5.443-4.069 6.779-1.13.603-2.373.903-3.612.903z\"></path><path d=\"m110.536 118.187h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.229c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.228c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.863h-24.864z\"></path><path d=\"m110.536 190.868h-40.228c-4.244 0-7.683-3.439-7.683-7.683v-40.231c0-4.244 3.439-7.683 7.683-7.683h40.228c4.243 0 7.682 3.439 7.682 7.683v40.231c0 4.244-3.439 7.683-7.682 7.683zm-32.546-15.365h24.864v-24.866h-24.864z\"></path><path d=\"m110.536 263.549h-40.228c-4.244 0-7.683-3.439-7.683-7.682v-40.232c0-4.243 3.439-7.682 7.683-7.682h40.228c4.243 0 7.682 3.439 7.682 7.682v40.232c0 4.243-3.439 7.682-7.682 7.682zm-32.546-15.365h24.864v-24.865h-24.864z\"></path><path d=\"m346.612 118.187h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 89.147h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 190.868h-205.46c-4.244 0-7.683-3.439-7.683-7.683 0-4.243 3.439-7.682 7.683-7.682h205.46c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m346.612 161.828h-148.612c-4.243 0-7.682-3.439-7.682-7.682 0-4.244 3.439-7.683 7.682-7.683h148.612c4.244 0 7.683 3.439 7.683 7.683 0 4.242-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 263.549h-205.46c-4.244 0-7.683-3.439-7.683-7.682s3.439-7.683 7.683-7.683h205.46c4.244 0 7.683 3.44 7.683 7.683s-3.439 7.682-7.683 7.682z\"></path><path d=\"m346.612 234.509h-148.612c-4.243 0-7.682-3.439-7.682-7.683 0-4.243 3.439-7.682 7.682-7.682h148.612c4.244 0 7.683 3.439 7.683 7.682 0 4.244-3.439 7.683-7.683 7.683z\"></path><path d=\"m250.82 398.007c-1.965 0-3.931-.751-5.431-2.251l-22.085-22.081c-1.44-1.44-2.251-3.395-2.251-5.432v-42.698c0-4.243 3.439-7.683 7.683-7.683 4.243 0 7.682 3.44 7.682 7.683v39.514l19.834 19.834c3.001 2.998 3.001 7.862 0 10.863-1.501 1.5-3.466 2.251-5.432 2.251z\"></path><path d=\"m107.181 350.623c-1.239 0-2.481-.3-3.613-.903-2.507-1.335-4.07-3.94-4.07-6.779v-43.437h-26.219c-25.551 0-46.338-20.788-46.338-46.338v-181.824c-.001-25.554 20.787-46.342 46.338-46.342h273.151c25.55 0 46.338 20.788 46.338 46.342v181.824c0 25.55-20.788 46.338-46.338 46.338h-160.788l-74.178 49.813c-1.292.868-2.786 1.306-4.283 1.306zm-33.902-310.258c-17.079 0-30.974 13.894-30.974 30.977v181.824c0 17.079 13.895 30.973 30.974 30.973h33.902c4.243 0 7.682 3.439 7.682 7.683v36.705l64.156-43.083c1.266-.852 2.758-1.306 4.282-1.306h163.129c17.079 0 30.973-13.894 30.973-30.973v-181.823c0-17.082-13.894-30.977-30.973-30.977z\"></path><path d=\"m228.736 475c-58.864 0-106.754-47.89-106.754-106.758 0-18.558 4.915-36.915 14.216-53.087.585-1.021 1.398-1.894 2.376-2.548l40.445-27.162c1.266-.852 2.758-1.306 4.282-1.306h108.493c1.786 0 3.517.622 4.895 1.759 24.662 20.376 38.805 50.389 38.805 82.344-.001 58.868-47.891 106.758-106.758 106.758zm-80.079-150.657c-7.406 13.469-11.311 28.605-11.311 43.899 0 50.393 40.997 91.393 91.39 91.393s91.393-41 91.393-91.393c0-26.451-11.323-51.347-31.163-68.738h-103.324z\"></path><path d=\"m228.736 443.201c-41.33 0-74.956-33.626-74.956-74.959 0-11.977 2.893-23.891 8.37-34.454 1.954-3.766 6.584-5.237 10.357-3.286 3.766 1.954 5.237 6.59 3.286 10.357-4.411 8.511-6.648 17.724-6.648 27.384 0 32.862 26.733 59.594 59.591 59.594 32.861 0 59.594-26.733 59.594-59.594 0-13.772-4.808-27.204-13.538-37.821-2.695-3.277-2.224-8.118 1.053-10.813 3.277-2.686 8.124-2.224 10.813 1.053 10.987 13.36 17.036 30.259 17.036 47.58.001 41.333-33.625 74.959-74.958 74.959z\"></path></g></svg>									\n					<h5>\n						Quick Consultation 					</h5>\n								<p>We confirm your location, traffic, and business needs to ensure a strong fit</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M63.457,49.62988a1.999,1.999,0,0,0-2.82715-.08691L38.59766,70.25488l-9.22754-8.67383a2,2,0,0,0-2.74023,2.91406L37.22754,74.457a2.00015,2.00015,0,0,0,2.74023,0l23.40234-22A1.99992,1.99992,0,0,0,63.457,49.62988Z\"></path><path d=\"M21.49121,39.81152a2.00029,2.00029,0,0,0-2.81152.30957,34.99343,34.99343,0,0,0-2.4834,3.52051,1.99947,1.99947,0,0,0,.65233,2.75195,2.02718,2.02718,0,0,0,2.752-.65234,31.08368,31.08368,0,0,1,2.2002-3.11816A2.00019,2.00019,0,0,0,21.49121,39.81152Z\"></path><path d=\"M52.53906,31.68945a2.02441,2.02441,0,0,0,2.376-1.53418,1.99948,1.99948,0,0,0-1.53418-2.376,34.75616,34.75616,0,0,0-4.26074-.64258,1.99993,1.99993,0,1,0-.35156,3.98438A30.76869,30.76869,0,0,1,52.53906,31.68945Z\"></path><path d=\"M11.60156,68.49414A2.00087,2.00087,0,0,0,13.56545,70.125a2.021,2.021,0,0,0,1.96776-2.36914,31.54123,31.54123,0,0,1-.47266-3.78711,2.00013,2.00013,0,1,0-3.99219.25391A35.42,35.42,0,0,0,11.60156,68.49414Z\"></path><path d=\"M76.03906,54.31641a1.98391,1.98391,0,0,0,.25055.56409c.61652-.2403,1.23193-.48346,1.86176-.691A7.663,7.663,0,0,1,79.351,51.368c-.22949-.72107-.47968-1.43652-.75525-2.13953a2.00044,2.00044,0,1,0-3.72461,1.46094A30.56134,30.56134,0,0,1,76.03906,54.31641Z\"></path><path d=\"M65.80762,35.52734a2.00052,2.00052,0,0,0-.56934-2.77051,35.21845,35.21845,0,0,0-3.73535-2.14453,1.99981,1.99981,0,0,0-1.77539,3.584,31.29353,31.29353,0,0,1,3.30957,1.90039A2.02462,2.02462,0,0,0,65.80762,35.52734Z\"></path><path d=\"M71.7832,38.33105a1.99952,1.99952,0,1,0-2.94531,2.70508A31.4367,31.4367,0,0,1,71.24217,43.999a2.03139,2.03139,0,0,0,2.79005.46389,1.99988,1.99988,0,0,0,.46387-2.79A35.26906,35.26906,0,0,0,71.7832,38.33105Z\"></path><path d=\"M13.18262,57.9707a2.01714,2.01714,0,0,0,2.32812-1.60547,30.998,30.998,0,0,1,.91992-3.70117,1.99985,1.99985,0,1,0-3.81445-1.20312,34.82591,34.82591,0,0,0-1.03906,4.18164A1.99871,1.99871,0,0,0,13.18262,57.9707Z\"></path><path d=\"M36.876,32.27437a1.91577,1.91577,0,0,0,.5517-.07418,30.98865,30.98865,0,0,1,3.72461-.82324,1.99969,1.99969,0,0,0-.61914-3.95117,35.03118,35.03118,0,0,0-4.207.92871A2.00054,2.00054,0,0,0,34.9541,30.8281,2.04073,2.04073,0,0,0,36.876,32.27437Z\"></path><path d=\"M46.02832,93c-.27441.02148-.63574-.00488-.9541-.01367a1.99991,1.99991,0,1,0-.11914,3.998c.3584.01074.71484.01074,1.0752.01563.808,0,1.62079-.03748,2.42957-.09387A7.67571,7.67571,0,0,1,48,94.28613V92.92975C47.34338,92.97137,46.68457,93,46.02832,93Z\"></path><path d=\"M37.54688,91.834a30.83649,30.83649,0,0,1-3.60059-1.2627,2,2,0,0,0-1.55469,3.68555A34.96388,34.96388,0,0,0,36.459,95.6836a2.02657,2.02657,0,0,0,2.46874-1.38086A2.00107,2.00107,0,0,0,37.54688,91.834Z\"></path><path d=\"M16.2666,80.47461a2.02966,2.02966,0,0,0,2.75488.6416,2.00116,2.00116,0,0,0,.6416-2.75488,31.00909,31.00909,0,0,1-1.8125-3.35547,1.9998,1.9998,0,1,0-3.62891,1.68164A35.261,35.261,0,0,0,16.2666,80.47461Z\"></path><path d=\"M24.94238,89.959a2.02558,2.02558,0,0,0,2.80078-.39258,1.99965,1.99965,0,0,0-.39258-2.80078,31.20992,31.20992,0,0,1-2.90039-2.48047,2.00006,2.00006,0,0,0-2.78125,2.875A35.09214,35.09214,0,0,0,24.94238,89.959Z\"></path><path d=\"M26.04784,37.70544a1.97083,1.97083,0,0,0,1.208-.3988,31.33317,31.33317,0,0,1,3.17285-2.11719,2.00037,2.00037,0,1,0-2.01367-3.457,35.27032,35.27032,0,0,0-3.5791,2.39062,1.99205,1.99205,0,0,0,1.2119,3.5824Z\"></path><path d=\"M46,104A42,42,0,1,1,85.59363,48.00537C85.634,48.00476,85.67334,48,85.71387,48h4.10059a46.0405,46.0405,0,0,0-9.92438-17.062l3.37164-3.37164a17.02613,17.02613,0,0,1,1.03612,1.48338,1.99985,1.99985,0,0,0,3.40431-2.09959,20.72153,20.72153,0,0,0-2.9068-3.699.31835.31835,0,0,0-.03516-.03723,19.006,19.006,0,0,0-3.73676-2.93176,1.99954,1.99954,0,1,0-2.04687,3.43555A14.52372,14.52372,0,0,1,80.445,24.72687L77.05884,28.113A45.8366,45.8366,0,0,0,52,16.39526V12h4a2.0001,2.0001,0,0,0,2-2V2a2.0001,2.0001,0,0,0-2-2H36a2.0001,2.0001,0,0,0-2,2v8a2.0001,2.0001,0,0,0,2,2h4v4.40405A45.85274,45.85274,0,0,0,14.93616,28.108L11.555,24.72687a14.52685,14.52685,0,0,1,1.46844-1.00909,1.99954,1.99954,0,0,0-2.04687-3.43555,19.13535,19.13535,0,0,0-3.751,2.94336c-.008.008-.01312.01758-.02094.02563a20.72153,20.72153,0,0,0-2.9068,3.699,1.99947,1.99947,0,0,0,.65234,2.752,2.02308,2.02308,0,0,0,2.752-.65234,17.01643,17.01643,0,0,1,1.03619-1.48334L12.108,30.93616a45.96878,45.96878,0,0,0,44.1402,75.89868,37.33789,37.33789,0,0,1-1.59467-3.73584A42.00487,42.00487,0,0,1,46,104Zm2-87.95532C47.33667,16.01617,46.67023,16,46,16c-.67072,0-1.33618.02222-2,.05078V12h4ZM38,8V4H54V8H38Z\"></path><path d=\"M124.28613,82H122.752a33.31979,33.31979,0,0,0-3.93359-9.50488l1.082-1.082a3.71858,3.71858,0,0,0,0-5.25293l-6.06055-6.06055a3.71681,3.71681,0,0,0-5.25293,0l-1.082,1.082A33.31979,33.31979,0,0,0,98,57.248V55.71387A3.718,3.718,0,0,0,94.28613,52H85.71387A3.718,3.718,0,0,0,82,55.71387V57.248a33.31979,33.31979,0,0,0-9.50488,3.93359l-1.082-1.082a3.71681,3.71681,0,0,0-5.25293,0l-6.06055,6.06055a3.71858,3.71858,0,0,0,0,5.25293l1.082,1.082A33.31979,33.31979,0,0,0,57.248,82H55.71387A3.718,3.718,0,0,0,52,85.71387v8.57227A3.718,3.718,0,0,0,55.71387,98H57.248a33.31979,33.31979,0,0,0,3.93359,9.50488l-1.082,1.082a3.71858,3.71858,0,0,0,0,5.25293l6.06152,6.06152a3.721,3.721,0,0,0,5.252-.001l1.082-1.082A33.31979,33.31979,0,0,0,82,122.752v1.53418A3.718,3.718,0,0,0,85.71387,128h8.57227A3.718,3.718,0,0,0,98,124.28613V122.752a33.31979,33.31979,0,0,0,9.50488-3.93359l1.083,1.083a3.721,3.721,0,0,0,5.252-.001l6.06055-6.06055a3.71858,3.71858,0,0,0,0-5.25293l-1.082-1.082A33.31979,33.31979,0,0,0,122.752,98h1.53418A3.718,3.718,0,0,0,128,94.28613V85.71387A3.718,3.718,0,0,0,124.28613,82ZM124,94h-2.86035a1.99951,1.99951,0,0,0-1.96387,1.624,29.42633,29.42633,0,0,1-4.56641,11.0332,1.99907,1.99907,0,0,0,.24121,2.53613l2.01953,2.02051-5.65625,5.65625-2.02051-2.01953a1.99907,1.99907,0,0,0-2.53613-.24121,29.42645,29.42645,0,0,1-11.0332,4.56641A1.99951,1.99951,0,0,0,94,121.13965V124H86v-2.86035a1.99951,1.99951,0,0,0-1.624-1.96387,29.42621,29.42621,0,0,1-11.0332-4.56641,2.00164,2.00164,0,0,0-2.53613.24121l-2.02051,2.01953-5.65625-5.65625,2.01953-2.02051a1.99907,1.99907,0,0,0,.24121-2.53613A29.42633,29.42633,0,0,1,60.82422,95.624,1.99951,1.99951,0,0,0,58.86035,94H56V86h2.86035a1.99951,1.99951,0,0,0,1.96387-1.624,29.42633,29.42633,0,0,1,4.56641-11.0332,1.99907,1.99907,0,0,0-.24121-2.53613l-2.01953-2.02051,5.65625-5.65625,2.02051,2.01953a1.99918,1.99918,0,0,0,2.53613.24121A29.42621,29.42621,0,0,1,84.376,60.82422,1.99951,1.99951,0,0,0,86,58.86035V56h8v2.86035a1.99951,1.99951,0,0,0,1.624,1.96387,29.42645,29.42645,0,0,1,11.0332,4.56641,1.99639,1.99639,0,0,0,2.53613-.24121l2.02051-2.01953,5.65625,5.65625-2.01953,2.02051a1.99907,1.99907,0,0,0-.24121,2.53613,29.42633,29.42633,0,0,1,4.56641,11.0332A1.99951,1.99951,0,0,0,121.13965,86H124Z\"></path><path d=\"M90,68a22,22,0,1,0,22,22A22.02489,22.02489,0,0,0,90,68Zm0,40a18,18,0,1,1,18-18A18.02094,18.02094,0,0,1,90,108Z\"></path></svg>									\n					<h5>\n						Fast, Free Installation 					</h5>\n								<p>We deliver and install a modern ATM, that is professionally programmed and ready to use.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"_x31_020_x2C__Hand_x2C__Safe_x2C__Delivery_x2C__Box\"><g><path d=\"m486 395.533h-18.834c-18.537-23.319-15.332-57.531-10.229-74.715 13.159-44.314 19.267-68.428 20.675-94.172 2.284-41.779-15.522-88.39-52.928-138.538-27.408-36.746-55.09-61.296-56.255-62.323-.069-.062-.141-.122-.211-.181-41.162-34.299-116.09 24.229-4.437 164.301-38.391 29.767-55.571 79.672-62.231 128.038-4.541 32.98-3.83 62.312-2.924 77.59h-12.626c-5.522 0-10 4.478-10 10v80.467c0 5.522 4.478 10 10 10h200c5.522 0 10-4.478 10-10v-80.467c0-5.522-4.478-10-10-10zm-110.62-189.314c11.18 26.576-9.932 70.083-20.099 86.106-2.966 4.658-1.594 10.84 3.064 13.807 4.658 2.964 10.84 1.593 13.807-3.064 1.972-3.097 47.813-76.178 14.02-117.33-.026-.033-.053-.066-.079-.099-22.908-27.776-49.569-65.331-58.252-100.827-4.855-19.85-2.998-36.45 4.969-44.407 6.028-6.02 14.845-5.832 22.489.469 3.807 3.406 107.141 96.927 102.342 184.681-1.177 21.518-5.635 41.608-19.876 89.57-5.407 18.21-8.846 52.267 5.722 80.408h-124.799c-1.937-31.989-3.775-141.659 56.692-189.314zm-79.38 269.781v-60.467h180v20.467h-150c-5.522 0-10 4.478-10 10s4.478 10 10 10h150v20z\"></path><path d=\"m435.91 194.663c-10.086-74.772-71.067-124.392-73.658-126.468-4.308-3.451-10.59-2.756-14.045 1.547s-2.767 10.595 1.532 14.055c.572.461 57.355 46.852 66.351 113.54.736 5.464 5.764 9.312 11.247 8.573 5.473-.738 9.311-5.773 8.573-11.247z\"></path><path d=\"m226 395.533h-12.626c.906-15.278 1.618-44.609-2.924-77.59-6.657-48.347-23.832-98.265-62.231-128.038 111.677-140.1 36.681-198.567-4.437-164.301-.071.06-.142.12-.211.181-1.165 1.027-28.846 25.577-56.255 62.323-37.404 50.148-55.212 96.759-52.927 138.539 1.408 25.745 7.516 49.858 20.673 94.171 5.103 17.184 8.31 51.396-10.229 74.715h-18.833c-5.523 0-10 4.478-10 10v80.467c0 5.522 4.477 10 10 10h200c5.523 0 10-4.478 10-10v-80.467c0-5.522-4.477-10-10-10zm-151.765-80.408c-14.241-47.96-18.699-68.051-19.876-89.57-4.8-87.77 98.573-181.31 102.341-184.681 26.699-22.006 63.777 30.983-30.68 144.621-.005.006-.165.208-.194.246-33.788 41.152 12.05 114.23 14.022 117.327 2.967 4.66 9.149 6.029 13.806 3.064 4.659-2.967 6.03-9.148 3.064-13.807-10.187-15.997-31.346-59.485-20.105-86.109 60.373 47.601 58.605 157.313 56.69 189.317h-124.789c14.568-28.141 11.129-62.199 5.721-80.408zm141.765 160.875h-180v-20h150c5.523 0 10-4.478 10-10s-4.477-10-10-10h-150v-20.467h180z\"></path><path d=\"m95.91 197.337c8.995-66.688 65.778-113.079 66.351-113.54 4.302-3.455 4.994-9.742 1.543-14.05-3.454-4.309-9.746-5.004-14.057-1.552-2.591 2.076-63.572 51.695-73.658 126.468-.738 5.474 3.1 10.509 8.573 11.247 5.449.738 10.507-3.079 11.248-8.573z\"></path><path d=\"m196 136v100c0 5.523 4.477 10 10 10h100c5.522 0 10-4.477 10-10v-100c0-5.523-4.478-10-10-10h-100c-5.523 0-10 4.477-10 10zm50 10h20v30h-20zm-30 0h10v40c0 5.523 4.477 10 10 10h40c5.522 0 10-4.477 10-10v-40h10v80h-80z\"></path><path d=\"m46 86c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m456 76c16.542 0 30-13.458 30-30s-13.458-30-30-30-30 13.458-30 30 13.458 30 30 30zm0-40c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10z\"></path><path d=\"m286 306c0-16.542-13.458-30-30-30s-30 13.458-30 30 13.458 30 30 30 30-13.458 30-30zm-30 10c-5.514 0-10-4.486-10-10s4.486-10 10-10 10 4.486 10 10-4.486 10-10 10z\"></path></g></g></svg>									\n					<h5>\n						We Handle Everything					</h5>\n								<p>Cash loading, service, monitoring, maintenance are 100% covered.</p>							\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m290.57 93.22c1.13 1.25 1.81 2.89 1.81 4.71v47.85c0 3.88-3.12 7-6.97 7h-61.4c-3.85 0-7-3.12-7-7v-47.85c.03-1.93.65-3.29 1.84-4.71l30.33-39.09c2.86-3.69 8.36-3.52 11.14.11zm-59.55 11.71v33.85h47.4v-33.85zm33.5-22.51-9.81-12.64-16.41 21.15h32.83zm-9.8-55.64c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.71-35.69-79.71-79.71 35.68-79.71 79.71-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.65-25.66 25.65-67.27 0-92.92zm100.88 170.98-36.99-36.96c-13.29-13.32-12.36-35.21 2.24-47.34 11.48-9.5 28.01-9.69 39.71-.88 12.64-9.55 30.61-8.36 41.92 2.92 12.5 12.5 12.5 32.8 0 45.3l-36.99 36.96c-2.72 2.75-7.17 2.75-9.89 0zm-27.07-46.85 32.03 32.03 32.03-32.03c11.65-11.65 2.72-31.58-13.61-30.78-4.62.23-9.75 2.49-12.81 6.24-3.17 3.88-8.28 3.6-11 .31-10.83-13.04-31.95-5.3-31.95 11.48.01 4.61 1.77 9.2 5.31 12.75zm32.03-83.34c43.99 0 79.68 35.69 79.68 79.71s-35.69 79.71-79.68 79.71c-44.02 0-79.71-35.69-79.71-79.71s35.69-79.71 79.71-79.71zm46.46 33.25c-25.68-25.65-67.27-25.65-92.92 0-25.68 25.65-25.68 67.27 0 92.92 25.65 25.65 67.24 25.65 92.92 0 25.66-25.65 25.66-67.27 0-92.92zm-373.75 58.87c0-3.86 3.12-7 7-7 3.85 0 7 3.15 7 7 0 1.13.62 2.24 1.67 3.15v-9.89c-8.48-2.04-15.68-5.64-15.68-18.09 0-9.13 7.09-16.1 15.68-18.48v-1.56c0-3.88 3.15-7 7-7 3.88 0 7 3.12 7 7v1.56c8.62 2.38 15.7 9.35 15.7 18.48 0 3.86-3.15 7-7 7s-7-3.15-7-7c0-1.13-.65-2.24-1.7-3.15v9.89c8.5 2.04 15.7 5.67 15.7 18.08 0 9.13-7.09 16.1-15.7 18.48v1.59c0 3.85-3.12 7-7 7-3.86 0-7-3.15-7-7v-1.59c-8.58-2.36-15.67-9.34-15.67-18.47zm29.68 3.15c2.21-1.9 2.32-4.51 0-6.12zm-15.67-27.98c0 1.3.62 2.24 1.67 2.98v-6.12c-1.05.9-1.67 2.01-1.67 3.14zm8.67-47.02c32.83 0 59.44 26.62 59.44 59.44s-26.62 59.44-59.44 59.44-59.41-26.62-59.41-59.44 26.59-59.44 59.41-59.44zm32.15 27.32c-17.74-17.74-46.52-17.74-64.26 0-17.75 17.74-17.75 46.52 0 64.26 17.74 17.74 46.52 17.74 64.26 0s17.74-46.51 0-64.26zm-32.15-47.59c44.02 0 79.71 35.69 79.71 79.71s-35.69 79.71-79.71 79.71-79.68-35.69-79.68-79.71 35.66-79.71 79.68-79.71zm46.46 33.25c-25.65-25.65-67.27-25.65-92.92 0s-25.65 67.27 0 92.92 67.27 25.65 92.92 0c25.68-25.65 25.68-67.27 0-92.92zm105.85 130.17c28.03 0 50.8 22.73 50.8 50.77 0 28.06-22.76 50.8-50.8 50.8s-50.8-22.76-50.8-50.8 22.76-50.77 50.8-50.77zm26.02 24.77c-14.37-14.37-37.67-14.37-52.04 0-14.34 14.34-14.34 37.64 0 52.02 14.37 14.34 37.67 14.34 52.04 0 14.34-14.37 14.34-37.68 0-52.02zm-26.02 79.31c12.02-2.3 22.96-6.07 33.99-12.39 6.46-3.71 28.69-15.42 29.11-16.27l33.93-66.64c11.54-22.71 45.27-20.49 53.32 4.17 2.3 7.06 1.9 15-1.7 22.08l-33.93 66.64c-4.39 8.65-9.52 15.93-19.08 21.4-10.01 5.75-20.72 12.73-30.95 17.97v55.47c0 14.71-12.02 26.73-26.76 26.73h-75.85c-14.74 0-26.76-12.02-26.76-26.73v-55.47c-10.23-5.24-20.95-12.22-30.95-17.97-9.55-5.47-14.68-12.76-19.11-21.4l-33.9-66.64c-7.37-14.49-1.08-32.43 12.98-39.09 14.66-6.92 31.52-1.16 38.64 12.84l33.9 66.64c.45.85 22.68 12.56 29.14 16.27 11.02 6.33 21.96 10.1 33.98 12.39zm20.97 8.85c-6.49 2.24-13.01 3.88-19.59 5.07-.85.17-1.73.2-2.61.03-14.03-2.52-27.01-6.92-39.71-14.2-9.81-5.64-32-16.87-34.64-22.05l-33.93-66.64c-5.95-11.74-23.41-10.6-27.55 2.15-1.19 3.63-.99 7.74.88 11.4l33.9 66.67c3.26 6.41 6.66 11.62 13.58 15.59 8.28 4.73 27.01 16.5 33.42 19.19 2.69.99 4.59 3.54 4.59 6.58v59.81c0 7 5.73 12.73 12.76 12.73h75.85c7.03 0 12.76-5.73 12.76-12.73v-59.81h.03c0-2.61 1.47-5.13 4-6.32 10.06-4.71 23.5-13.44 33.99-19.45 6.92-3.97 10.29-9.18 13.58-15.59l33.9-66.64c5.98-11.76-5.24-25.17-17.97-21-3.66 1.16-6.83 3.74-8.7 7.43l-33.93 66.64c-2.64 5.19-24.83 16.41-34.64 22.05-6.67 3.82-13.31 6.76-19.97 9.09z\"></path></svg>									\n					<h5>\n						You Enjoy the Benefits 					</h5>\n								<p>More foot traffic, better customer experience, and a no-cost upgrade to your business.</p>', 'How It Works', '', 'inherit', 'closed', 'closed', '', '761-revision-v1', '', '', '2025-11-25 12:55:47', '2025-11-25 12:55:47', '', 761, 'https://mrarif.me/secureswipesolutions/?p=889', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(890, 1, '2025-11-25 12:58:12', '2025-11-25 12:58:12', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traƯic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service. \n													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traƯic locations looking to increase revenue eƯortlessly.\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-25 12:58:12', '2025-11-25 12:58:12', '', 25, 'https://mrarif.me/secureswipesolutions/?p=890', 0, 'revision', '', 0),
(891, 1, '2025-11-25 12:58:12', '2025-11-25 12:58:12', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traƯic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service. \n													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traƯic locations looking to increase revenue eƯortlessly.\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-25 12:58:12', '2025-11-25 12:58:12', '', 25, 'https://mrarif.me/secureswipesolutions/?p=891', 0, 'revision', '', 0),
(895, 1, '2025-11-27 11:42:26', '2025-11-27 11:42:26', '<img width=\"989\" height=\"555\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-77.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-77.jpg 989w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-77-300x168.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-77-768x431.jpg 768w\" sizes=\"(max-width: 989px) 100vw, 989px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 11:42:26', '2025-11-27 11:42:26', '', 25, 'https://mrarif.me/secureswipesolutions/?p=895', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(892, 1, '2025-11-25 12:58:13', '2025-11-25 12:58:13', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-25 12:58:13', '2025-11-25 12:58:13', '', 25, 'https://mrarif.me/secureswipesolutions/?p=892', 0, 'revision', '', 0),
(893, 1, '2025-11-27 11:42:26', '2025-11-27 11:42:26', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 11:42:26', '2025-11-27 11:42:26', '', 25, 'https://mrarif.me/secureswipesolutions/?p=893', 0, 'revision', '', 0),
(894, 1, '2025-11-27 11:42:26', '2025-11-27 11:42:26', '<img width=\"1000\" height=\"678\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-300x203.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-19.02.48-768x521.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 11:42:26', '2025-11-27 11:42:26', '', 25, 'https://mrarif.me/secureswipesolutions/?p=894', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(896, 1, '2025-11-27 11:42:58', '2025-11-27 11:42:58', '<img width=\"989\" height=\"555\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-77.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-77.jpg 989w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-77-300x168.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-77-768x431.jpg 768w\" sizes=\"(max-width: 989px) 100vw, 989px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 11:42:58', '2025-11-27 11:42:58', '', 25, 'https://mrarif.me/secureswipesolutions/?p=896', 0, 'revision', '', 0),
(897, 1, '2025-11-27 11:42:58', '2025-11-27 11:42:58', '<img width=\"989\" height=\"555\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-77.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-77.jpg 989w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-77-300x168.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-77-768x431.jpg 768w\" sizes=\"(max-width: 989px) 100vw, 989px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 11:42:58', '2025-11-27 11:42:58', '', 25, 'https://mrarif.me/secureswipesolutions/?p=897', 0, 'revision', '', 0),
(902, 1, '2025-11-27 11:46:33', '2025-11-27 11:46:33', '<img width=\"1500\" height=\"998\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-768x511.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 11:46:33', '2025-11-27 11:46:33', '', 25, 'https://mrarif.me/secureswipesolutions/?p=902', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(898, 1, '2025-11-27 11:42:58', '2025-11-27 11:42:58', '<img width=\"1500\" height=\"998\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-768x511.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 11:42:58', '2025-11-27 11:42:58', '', 25, 'https://mrarif.me/secureswipesolutions/?p=898', 0, 'revision', '', 0),
(899, 1, '2025-11-27 11:46:24', '2025-11-27 11:46:24', '', 'All the Value, None of the Work', '', 'inherit', 'open', 'closed', '', 'all-the-value-none-of-the-work', '', '', '2025-11-27 11:46:24', '2025-11-27 11:46:24', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg', 0, 'attachment', 'image/jpeg', 0),
(900, 1, '2025-11-27 11:46:32', '2025-11-27 11:46:32', '<img width=\"1500\" height=\"998\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-768x511.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 11:46:32', '2025-11-27 11:46:32', '', 25, 'https://mrarif.me/secureswipesolutions/?p=900', 0, 'revision', '', 0),
(901, 1, '2025-11-27 11:46:32', '2025-11-27 11:46:32', '<img width=\"1500\" height=\"998\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-768x511.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1.jpg 2000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1024x682.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/72966-1-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 11:46:32', '2025-11-27 11:46:32', '', 25, 'https://mrarif.me/secureswipesolutions/?p=901', 0, 'revision', '', 0),
(903, 1, '2025-11-27 11:53:27', '2025-11-27 11:53:27', '', 'Flexible', '', 'inherit', 'open', 'closed', '', 'flexible', '', '', '2025-11-27 11:53:27', '2025-11-27 11:53:27', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(904, 1, '2025-11-27 11:53:34', '2025-11-27 11:53:34', '<img width=\"1500\" height=\"998\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-768x511.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 11:53:34', '2025-11-27 11:53:34', '', 25, 'https://mrarif.me/secureswipesolutions/?p=904', 0, 'revision', '', 0),
(905, 1, '2025-11-27 11:53:34', '2025-11-27 11:53:34', '<img width=\"1500\" height=\"998\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-768x511.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/New-Project-29-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 11:53:34', '2025-11-27 11:53:34', '', 25, 'https://mrarif.me/secureswipesolutions/?p=905', 0, 'revision', '', 0),
(907, 1, '2025-11-27 11:55:32', '2025-11-27 11:55:32', '<img width=\"1500\" height=\"998\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-768x511.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 11:55:32', '2025-11-27 11:55:32', '', 25, 'https://mrarif.me/secureswipesolutions/?p=907', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(908, 1, '2025-11-27 11:55:32', '2025-11-27 11:55:32', '<img width=\"1500\" height=\"998\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-768x511.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/11665759-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 11:55:32', '2025-11-27 11:55:32', '', 25, 'https://mrarif.me/secureswipesolutions/?p=908', 0, 'revision', '', 0),
(909, 1, '2025-11-27 11:55:32', '2025-11-27 11:55:32', '<img width=\"1500\" height=\"998\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-768x511.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1500\" height=\"998\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-768x511.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 11:55:32', '2025-11-27 11:55:32', '', 25, 'https://mrarif.me/secureswipesolutions/?p=909', 0, 'revision', '', 0),
(910, 1, '2025-11-27 11:57:42', '2025-11-27 11:57:42', '', 'Free ATM Installation', '', 'inherit', 'open', 'closed', '', 'free-atm-installation', '', '', '2025-11-27 11:57:42', '2025-11-27 11:57:42', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation.jpg', 0, 'attachment', 'image/jpeg', 0),
(911, 1, '2025-11-27 11:57:57', '2025-11-27 11:57:57', '<img width=\"1500\" height=\"998\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-768x511.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1500\" height=\"998\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-768x511.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 11:57:57', '2025-11-27 11:57:57', '', 25, 'https://mrarif.me/secureswipesolutions/?p=911', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(912, 1, '2025-11-27 11:57:57', '2025-11-27 11:57:57', '<img width=\"1500\" height=\"998\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-768x511.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1500\" height=\"998\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-768x511.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 11:57:57', '2025-11-27 11:57:57', '', 25, 'https://mrarif.me/secureswipesolutions/?p=912', 0, 'revision', '', 0),
(924, 1, '2025-11-27 12:04:49', '2025-11-27 12:04:49', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"612\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1-300x184.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1-768x470.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 12:04:49', '2025-11-27 12:04:49', '', 25, 'https://mrarif.me/secureswipesolutions/?p=924', 0, 'revision', '', 0),
(920, 1, '2025-11-27 12:02:45', '2025-11-27 12:02:45', '<img width=\"2560\" height=\"1707\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-scaled.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-scaled.jpg 2560w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-1536x1024.jpg 1536w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"612\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1-300x184.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1-768x470.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 12:02:45', '2025-11-27 12:02:45', '', 25, 'https://mrarif.me/secureswipesolutions/?p=920', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(913, 1, '2025-11-27 11:57:58', '2025-11-27 11:57:58', '<img width=\"2560\" height=\"1707\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-scaled.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-scaled.jpg 2560w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-1536x1024.jpg 1536w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1500\" height=\"998\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-768x511.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 11:57:58', '2025-11-27 11:57:58', '', 25, 'https://mrarif.me/secureswipesolutions/?p=913', 0, 'revision', '', 0),
(914, 1, '2025-11-27 12:01:45', '2025-11-27 12:01:45', '<img width=\"2560\" height=\"1707\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-scaled.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-scaled.jpg 2560w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-1536x1024.jpg 1536w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1500\" height=\"998\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-768x511.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 12:01:45', '2025-11-27 12:01:45', '', 25, 'https://mrarif.me/secureswipesolutions/?p=914', 0, 'revision', '', 0),
(915, 1, '2025-11-27 12:01:45', '2025-11-27 12:01:45', '<img width=\"2560\" height=\"1707\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-scaled.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-scaled.jpg 2560w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-1536x1024.jpg 1536w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1500\" height=\"998\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-1024x681.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/15784592-1-768x511.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 12:01:45', '2025-11-27 12:01:45', '', 25, 'https://mrarif.me/secureswipesolutions/?p=915', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(916, 1, '2025-11-27 12:01:46', '2025-11-27 12:01:46', '<img width=\"2560\" height=\"1707\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-scaled.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-scaled.jpg 2560w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-1536x1024.jpg 1536w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 12:01:46', '2025-11-27 12:01:46', '', 25, 'https://mrarif.me/secureswipesolutions/?p=916', 0, 'revision', '', 0),
(917, 1, '2025-11-27 12:02:35', '2025-11-27 12:02:35', '', '1 (1)', '', 'inherit', 'open', 'closed', '', '1-1', '', '', '2025-11-27 12:02:35', '2025-11-27 12:02:35', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(918, 1, '2025-11-27 12:02:45', '2025-11-27 12:02:45', '<img width=\"2560\" height=\"1707\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-scaled.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-scaled.jpg 2560w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-1536x1024.jpg 1536w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 12:02:45', '2025-11-27 12:02:45', '', 25, 'https://mrarif.me/secureswipesolutions/?p=918', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(919, 1, '2025-11-27 12:02:45', '2025-11-27 12:02:45', '<img width=\"2560\" height=\"1707\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-scaled.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-scaled.jpg 2560w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-1536x1024.jpg 1536w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 12:02:45', '2025-11-27 12:02:45', '', 25, 'https://mrarif.me/secureswipesolutions/?p=919', 0, 'revision', '', 0),
(921, 1, '2025-11-27 12:04:43', '2025-11-27 12:04:43', '', 'Free ATM', '', 'inherit', 'open', 'closed', '', 'free-atm', '', '', '2025-11-27 12:04:43', '2025-11-27 12:04:43', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM.jpg', 0, 'attachment', 'image/jpeg', 0),
(922, 1, '2025-11-27 12:04:49', '2025-11-27 12:04:49', '<img width=\"2560\" height=\"1707\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-scaled.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-scaled.jpg 2560w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-1536x1024.jpg 1536w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"612\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1-300x184.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1-768x470.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 12:04:49', '2025-11-27 12:04:49', '', 25, 'https://mrarif.me/secureswipesolutions/?p=922', 0, 'revision', '', 0),
(923, 1, '2025-11-27 12:04:49', '2025-11-27 12:04:49', '<img width=\"2560\" height=\"1707\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-scaled.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-scaled.jpg 2560w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-768x512.jpg 768w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-1536x1024.jpg 1536w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-Installation-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"612\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1-300x184.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1-768x470.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 12:04:49', '2025-11-27 12:04:49', '', 25, 'https://mrarif.me/secureswipesolutions/?p=923', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(925, 1, '2025-11-27 12:05:47', '2025-11-27 12:05:47', '', 'All the Value', '', 'inherit', 'open', 'closed', '', 'all-the-value', '', '', '2025-11-27 12:05:47', '2025-11-27 12:05:47', '', 25, 'https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value.jpg', 0, 'attachment', 'image/jpeg', 0),
(926, 1, '2025-11-27 12:05:53', '2025-11-27 12:05:53', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"612\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1-300x184.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1-768x470.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 12:05:53', '2025-11-27 12:05:53', '', 25, 'https://mrarif.me/secureswipesolutions/?p=926', 0, 'revision', '', 0),
(927, 1, '2025-11-27 12:05:54', '2025-11-27 12:05:54', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"612\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1-300x184.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/1-1-768x470.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 12:05:54', '2025-11-27 12:05:54', '', 25, 'https://mrarif.me/secureswipesolutions/?p=927', 0, 'revision', '', 0),
(928, 1, '2025-11-27 12:05:54', '2025-11-27 12:05:54', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Free-ATM-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Free ATM Installation</h2>		We cover everything — the machine, delivery, installation, programming, and setup.\nNo rental fees. No installation charges. No surprises. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>All the Value, None of the Work \n</h2>		You get increased foot traffic and customer convenience.We manage every detail: cash loading, monitoring, repairs, and service.													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Flexible-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Flexible, Business-Friendly Terms </h2>		No long-term contracts or penalties.\nIf a location underperforms, we simply relocate the machine easily and stress-free.													<img width=\"1000\" height=\"750\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work.jpg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-300x225.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/All-the-Value-None-of-the-Work-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>A Smart Fit for Your Business \n</h2>		Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,\nand other high-traffic locations looking to increase revenue effortlessly.					\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_0\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><path d=\"m63.414 19-18.414-18.414-20 19.999v-19.585h-24v51h8.589l2.411 2.411v8.589h51v-24h-19.601zm-2.828 0-40.601 40.568-15.571-15.571 40.586-40.583zm-5.586 38c0-1.103.897-2 2-2v2zm2-10c-1.103 0-2-.897-2-2h2zm0 2v4c-2.206 0-4 1.794-4 4h-8.827c2.408-3.537 2.408-8.463 0-12h8.827c0 2.206 1.794 4 4 4zm-15.413-4c.101.101.206.195.303.304 2.819 3.141 2.819 8.251 0 11.393-.097.108-.201.203-.303.304h-16.201l7.614-7.609v5.608h2v-7.607l2.395-2.393zm-22.587-36c-1.103 0-2-.897-2-2h2zm0 2v8.827c-3.537-2.408-8.463-2.408-12 0v-8.827c2.206 0 4-1.794 4-4h4c0 2.206 1.794 4 4 4zm-10-4c0 1.103-.897 2-2 2v-2zm-2 15.413c.101-.101.196-.206.304-.303 3.141-2.819 8.252-2.819 11.393 0 .108.097.203.202.304.303v4.171l-2.417 2.416h-7.584v2h5.584l-7.584 7.583zm16-19.413v19.584l-2 2v-19.584h-16v35.583l-2 2v-39.583zm-20 47v-4.589l4.589 4.589zm11 6.411 4.589 4.589h-4.589zm47-15.411v20h-39.617l2.002-2h35.615v-16h-19.604l2.001-2z\"></path><path d=\"m19.997 56.414 37.417-37.414-12.414-12.414-37.417 37.414zm11.385-33.384c.205-.013.409-.03.618-.03 4.963 0 9 4.038 9 9 0 .208-.017.411-.031.616l-8.354 8.354c-.204.013-.407.03-.615.03-4.963 0-9-4.037-9-9 0-.209.017-.414.031-.619zm13.618-8.03c1.512 0 2.814-.852 3.494-2.092l2.598 2.598c-1.24.68-2.092 1.983-2.092 3.494s.852 2.813 2.092 3.494l-8.18 8.179c-.606-5.005-4.581-8.98-9.587-9.585l8.181-8.18c.68 1.24 1.982 2.092 3.494 2.092zm-14.328 27.912-7.179 7.179c-.68-1.24-1.982-2.091-3.493-2.091-1.512 0-2.815.853-3.495 2.094l-2.599-2.599c1.241-.68 2.094-1.983 2.094-3.495s-.853-2.815-2.094-3.495l7.182-7.181c.604 5.006 4.579 8.982 9.584 9.588zm-16.672 1.088c0 .975-.702 1.786-1.627 1.962l-1.962-1.962 1.962-1.962c.925.176 1.627.987 1.627 1.962zm4.038 7.627c.176-.925.987-1.627 1.962-1.627.973 0 1.784.7 1.962 1.621l-1.965 1.964zm34.586-30.665c-.923-.177-1.624-.988-1.624-1.962s.701-1.785 1.624-1.962l1.962 1.962zm-5.662-9.586c-.177.923-.988 1.624-1.962 1.624s-1.785-.701-1.962-1.624l1.962-1.962z\"></path><path d=\"m9 25h2v2h-2z\"></path><path d=\"m13 25h4v2h-4z\"></path><path d=\"m27.386 35.2-.78.78 1.414 1.414.78-.78.874.874c.329.329.767.512 1.233.512h.002c.466 0 .904-.182 1.234-.512l2.108-2.108c.33-.329.511-.768.511-1.234s-.181-.905-.511-1.234l-2.983-2.983 1.749-1.75 2.804 2.804-.874.875 1.414 1.413 1.054-1.054c.33-.33.512-.768.512-1.234s-.182-.905-.512-1.234l-.874-.875.874-.875-1.414-1.414-.874.875-.875-.875c-.658-.659-1.811-.659-2.469 0l-2.109 2.109c-.68.681-.68 1.788.001 2.468l2.983 2.983-1.749 1.749-2.804-2.804.874-.875-1.414-1.413-1.053 1.053c-.33.331-.512.769-.512 1.236s.182.906.512 1.234z\"></path><path d=\"m37 47h2v2h-2z\"></path><path d=\"m37 51h2v4h-2z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m111.467 205.3c-.242 5.232-4.681 9.278-9.914 9.035-5.232-.243-9.278-4.681-9.035-9.914s4.681-9.278 9.914-9.035c5.232.243 9.277 4.682 9.035 9.914zm378.528 157.809-28.462 11.034c-2.598 1.007-5.273 1.484-7.905 1.484-8.798 0-17.116-5.329-20.482-14.011l-2.483-6.404-23.164 9.665c1.117 6.562.043 13.383-3.215 19.308-3.865 7.028-10.267 12.122-18.025 14.342-.319.092-.64.178-.961.259 2.534 7.635 2.027 16.233-2.11 23.754-6.105 11.102-18.281 16.794-30.149 15.22.355 5.464-.779 11.071-3.59 16.181-3.854 7.008-10.232 12.092-17.957 14.315-4.829 1.39-9.803 1.549-14.552.517.154 5.15-1.015 10.393-3.66 15.203-3.855 7.009-10.506 12.273-18.244 14.442-2.673.75-5.383 1.12-8.067 1.12-5.026 0-9.965-1.3-14.407-3.852l-7.846-4.506c-3.891 5.477-9.46 9.503-16.025 11.492-2.944.892-5.951 1.334-8.938 1.334-4.948 0-9.843-1.214-14.315-3.606-6.636-3.549-11.533-9.276-14.099-15.96-8.287 3.524-18.007 3.362-26.402-1.127-5.945-3.18-10.518-8.169-13.249-14.035-8.734 4.729-19.586 5.136-28.955.125-11.716-6.267-17.686-19.132-15.782-31.575-5.153.118-10.332-1.054-15.054-3.58-7.171-3.835-12.426-10.256-14.797-18.08s-1.564-16.082 2.271-23.253l7.66-14.322c-1.712-4.071-2.556-8.52-3.365-12.869-1.467-7.889-2.609-12.776-6.097-14.13-1.373-.532-4.629-1.887-16.566-7.208l-3.077 6.962c-2.363 5.346-6.68 9.458-12.155 11.577-2.581.999-5.271 1.497-7.952 1.497-3.007 0-6.004-.626-8.83-1.875l-27.92-12.34c-11.064-4.892-16.088-17.873-11.198-28.937l64.099-145.036c2.363-5.346 6.681-9.457 12.156-11.576 5.478-2.119 11.438-1.984 16.782.379l27.919 12.34c5.346 2.363 9.458 6.68 11.576 12.155 2.119 5.476 1.984 11.436-.378 16.782l-4.808 10.878 18.173 8.384c.194.09.385.187.571.292 5.361 3.017 10.854 3.698 16.832 3.215-19.397-22.985-29.935-51.938-29.935-83.012v-85.017c0-3.2 1.907-6.092 4.849-7.353l105.141-45.06c2.012-.862 4.291-.862 6.303 0l105.142 45.06c2.941 1.26 4.849 4.153 4.849 7.353v85.017c0 31.9-11.12 61.598-31.536 84.872 11.422 4.371 19.354 6.4 26.739 2.558l15.846-8.482-4.361-11.251c-4.373-11.279 1.246-24.014 12.526-28.387l28.461-11.034c11.275-4.372 24.015 1.246 28.388 12.526l57.316 147.848c4.373 11.28-1.247 24.014-12.526 28.388zm-331.136-217.039c0 30.398 11.475 58.456 32.392 79.488 4.573-1.066 9.417-2.148 14.524-2.886-21.891-18.803-34.916-46-34.916-76.602v-66.553c0-3.2 1.907-6.093 4.849-7.353l77.141-33.06c2.012-.862 4.291-.862 6.303 0l77.142 33.06c2.941 1.261 4.849 4.153 4.849 7.353v66.553c0 29.205-12.01 55.897-32.948 74.851 4.679 1.003 9.124 2.357 13.343 3.839 20.414-20.94 31.605-48.691 31.605-78.689v-79.742l-97.143-41.631-97.141 41.631zm123.624 73.894c27.123-15.716 42.658-42.575 42.658-73.894v-61.277l-69.141-29.632-69.141 29.631v61.278c0 40.465 27.203 73.905 67.995 84.082 9.853-5.769 19.049-8.879 27.629-10.188zm-155.092-20.119c.636-1.438.668-3.05.092-4.54-.577-1.49-1.686-2.66-3.123-3.295l-27.92-12.34c-2.991-1.32-6.511.035-7.835 3.032l-64.103 145.034c-1.324 2.996.036 6.511 3.032 7.835l27.92 12.339c1.438.636 3.05.668 4.539.091s2.66-1.686 3.295-3.123zm7.842 218.929 18.285-31.647c3.007-6.919.21-15.051-6.46-18.611-7.078-3.777-15.906-1.104-19.685 5.96l-13.896 25.984c-1.82 3.402-2.199 7.333-1.068 11.066 1.132 3.733 3.629 6.792 7.031 8.611 5.069 2.712 11.276 2.138 15.793-1.363zm34.768 30.47 20.199-39.118c1.219-6.202-1.788-12.7-7.372-15.68-5.115-2.731-11.366-2.131-15.887 1.432l-22.628 39.738c-3.78 7.069-1.105 15.896 5.965 19.678 7.061 3.775 15.907 1.062 19.723-6.05zm40.886 15.947 17.914-34.431c1.214-6.199-1.793-12.691-7.373-15.669-5.563-2.97-12.591-1.9-17.066 2.482l-19.514 37.791c-.382 5.682 2.583 11.138 7.633 13.839 6.28 3.359 14.108 1.619 18.406-4.012zm41.773 15.137 13.326-24.918c2.623-4.905 2.168-11-1.16-15.526-1.272-1.731-2.888-3.127-4.803-4.151-5.562-2.972-12.596-1.897-17.072 2.495l-17.563 33.757c-.591 5.859 2.365 11.51 7.595 14.306 3.401 1.819 7.331 2.198 11.066 1.067 3.733-1.131 6.792-3.627 8.611-7.03zm41.098-23c-.431-.242-10.234-5.943-10.234-5.943-.36 3.994-1.485 7.936-3.428 11.57l-7.613 14.236 8.046 4.621c3.06 1.758 6.679 2.183 10.188 1.2 3.63-1.018 6.744-3.477 8.543-6.747 3.674-6.682 1.206-15.176-5.502-18.937zm96.763-93.549c-1.271-2.62-3.29-4.772-5.838-6.225l-75.698-43.146c-12.854-7.328-28.913-.826-47.505 6.701-13.9 5.627-29.525 11.95-45.357 11.952-15.469.001-31.134-6.033-45.602-24.648-1.878-2.411-2.626-5.521-2.047-8.524.579-3.004 2.43-5.614 5.078-7.16 21.347-12.458 39.376-26.058 53.587-40.419 3.791-3.831 7.5-7.251 11.129-10.309-16.366-7.18-30.364-3.911-45.042-.473-14.507 3.399-29.504 6.913-44.816-1.553l-17.663-8.148-43.28 97.923c10.715 4.775 14.599 6.427 15.889 6.927 10.665 4.14 13.695 14.327 15.418 22.888 9.271-9.106 23.758-11.602 35.817-5.165 8.933 4.767 14.571 13.433 15.855 22.851 6.655-1.223 13.684-.247 19.915 3.08 7.488 3.996 12.732 10.742 14.953 18.468 7.648-2.433 16.16-1.818 23.646 2.176 7.488 3.996 12.732 10.741 14.953 18.466 7.651-2.435 16.167-1.82 23.651 2.18 3.574 1.911 6.656 4.446 9.188 7.546l39.847 22.555c3.187 1.771 6.902 2.182 10.464 1.157 3.605-1.038 6.575-3.399 8.363-6.65 3.654-6.644 1.168-15.121-5.543-18.898-.438-.246-55.921-31.627-55.921-31.627-3.851-2.167-5.216-7.045-3.049-10.896 2.167-3.85 7.044-5.215 10.895-3.049l68.502 38.546c6.706 3.685 15.167 1.229 18.855-5.477 3.655-6.644 1.168-15.122-5.543-18.899-.002-.001-.004-.003-.007-.004-16.074-9.003-34.29-19.206-52.143-29.426-3.834-2.195-5.163-7.083-2.969-10.917s7.08-5.165 10.918-2.968c17.797 10.188 35.986 20.376 52.034 29.365 3.156 1.767 6.848 2.182 10.398 1.166 3.627-1.038 6.612-3.407 8.407-6.67 2.172-3.943 2.265-8.57.261-12.696zm34.356-23.49-38.86-100.241-14.206 7.604c-15.417 8.021-30.507 2.014-45.1-3.793-24.23-9.645-49.287-19.616-88.199 19.707-13.945 14.093-31.215 27.432-51.395 39.707 20.72 22.295 42.906 13.311 68.358 3.007 20.568-8.328 41.839-16.938 61.432-5.771l75.699 43.146c3.107 1.771 5.843 4.041 8.116 6.713zm62.726.215-57.316-147.848c-.911-2.351-3.164-3.793-5.546-3.793-.713 0-1.438.129-2.142.402l-28.46 11.033c-3.054 1.184-4.575 4.632-3.392 7.686l57.316 147.849c1.184 3.054 4.634 4.576 7.687 3.392l28.462-11.034c3.054-1.185 4.574-4.633 3.391-7.687zm-71.717-135.816c-5.224 0-9.485 4.26-9.485 9.485 0 5.224 4.261 9.485 9.485 9.485s9.485-4.261 9.485-9.485c0-5.225-4.261-9.485-9.485-9.485zm-156.49-22.541c-3.936 3.936-9.169 6.103-14.736 6.103-5.566 0-10.8-2.167-14.735-6.103l-28.45-28.45c-8.124-8.125-8.125-21.346 0-29.471 3.936-3.936 9.169-6.103 14.736-6.103s10.801 2.167 14.736 6.103l13.656 13.657 36.437-36.799c3.911-3.95 9.129-6.136 14.691-6.157h.081c5.541 0 10.752 2.149 14.683 6.058 8.123 8.078 8.167 21.276.097 29.421-6.34 6.398-12.664 12.813-18.988 19.228-10.528 10.677-21.415 21.719-32.208 32.513zm-11.314-11.314c10.754-10.754 21.62-21.775 32.128-32.433 6.334-6.424 12.667-12.848 19.017-19.256 1.871-1.889 1.865-4.945-.014-6.814-.916-.91-2.133-1.37-3.421-1.403-1.282.005-2.483.508-3.383 1.416l-42.093 42.512c-1.497 1.512-3.536 2.366-5.665 2.371-.006 0-.013 0-.02 0-2.122 0-4.156-.843-5.657-2.343l-19.342-19.342c-.913-.914-2.129-1.417-3.422-1.417s-2.509.503-3.422 1.417c-1.887 1.887-1.888 4.958 0 6.844l28.449 28.449c.913.914 2.129 1.417 3.422 1.417 1.295-.001 2.51-.504 3.423-1.418z\"></path></svg>									\n											<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m105.946 32.844c-16.873.163-33.115-10.269-39.321-14.762a4.465 4.465 0 0 0 -5.249 0c-6.207 4.5-22.489 14.892-39.322 14.762a4.539 4.539 0 0 0 -4.584 4.513c.008 23.088 4.629 56.119 44.5 76.307a4.505 4.505 0 0 0 4.062 0c39.87-20.188 44.491-53.219 44.5-76.307a4.544 4.544 0 0 0 -4.586-4.513zm-41.27 78.144a1.5 1.5 0 0 1 -1.352 0c-38.396-19.443-42.846-51.335-42.854-73.633a1.522 1.522 0 0 1 1.536-1.511c17.544.234 34.744-10.667 41.13-15.332a1.468 1.468 0 0 1 1.728 0c6.385 4.662 23.567 15.559 41.113 15.332a1.527 1.527 0 0 1 1.553 1.511c-.008 22.298-4.458 54.19-42.854 73.633z\"></path><path d=\"m124.315 48.05a1.5 1.5 0 0 0 -1.115 1.8 61.587 61.587 0 0 1 1.65 14.156 60.919 60.919 0 0 1 -60.85 60.854 60.144 60.144 0 0 1 -36.681-12.321 10.036 10.036 0 1 0 -2.03 2.225 63.128 63.128 0 0 0 38.711 13.096 63.922 63.922 0 0 0 63.85-63.85 64.6 64.6 0 0 0 -1.73-14.845 1.5 1.5 0 0 0 -1.805-1.115zm-105.315 65.95a7 7 0 1 1 7-7 7.008 7.008 0 0 1 -7 7z\"></path><path d=\"m3.15 64.01a60.856 60.856 0 0 1 92.719-51.842 8.994 8.994 0 1 0 1.714-2.468 63.886 63.886 0 0 0 -96.378 65.933 1.5 1.5 0 0 0 1.474 1.227 1.425 1.425 0 0 0 .274-.025 1.5 1.5 0 0 0 1.2-1.747 61.119 61.119 0 0 1 -1.003-11.078zm100.85-54.01a6 6 0 1 1 -6 6 6.006 6.006 0 0 1 6-6z\"></path><path d=\"m76 55.631c0-.555 0-1.226 0-1.551-.177-16.05-23.822-16.055-24 0v1.551a7.508 7.508 0 0 0 -4.5 6.869v16a7.508 7.508 0 0 0 7.5 7.5h18a7.508 7.508 0 0 0 7.5-7.5v-16a7.508 7.508 0 0 0 -4.5-6.869zm-21-1.531c.14-12.162 17.86-12.159 18 0v.9h-18c0-.359 0-.7 0-.9zm22.5 24.4a4.505 4.505 0 0 1 -4.5 4.5h-18a4.505 4.505 0 0 1 -4.5-4.5v-16a4.505 4.505 0 0 1 4.5-4.5h18a4.505 4.505 0 0 1 4.5 4.5z\"></path><path d=\"m66.456 68.778a.968.968 0 0 1 .2-.764 3.228 3.228 0 1 0 -5.31 0 .958.958 0 0 1 .2.757c-.235 1.171-.9 4.519-1.369 6.843a2 2 0 0 0 1.963 2.386h3.72a2 2 0 0 0 1.962-2.392z\"></path></g></g></svg>									\n																	<img width=\"299\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/images.png\" alt=\"\" />																										<img width=\"219\" height=\"180\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/download-2.png\" alt=\"\" />																										<img width=\"1418\" height=\"499\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704.png 1418w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-300x106.png 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-1024x360.png 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/620670b9d7b91b0004122617-1694098704-768x270.png 768w\" sizes=\"(max-width: 1418px) 100vw, 1418px\" />', 'Services Snapshot', '', 'inherit', 'closed', 'closed', '', '25-revision-v1', '', '', '2025-11-27 12:05:54', '2025-11-27 12:05:54', '', 25, 'https://mrarif.me/secureswipesolutions/?p=928', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(929, 1, '2025-11-27 12:10:27', '2025-11-27 12:10:27', '<ul>\n							<li>\n											<a href=\"mailto:admin@SecureSwipeATMs.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										admin@SecureSwipeATMs.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:818262-8674\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(818) 262-8674\n											</a>\n									</li>\n						</ul>\n																		<a href=\"https://mrarif.me/secureswipesolutions/\">\n							<img width=\"350\" height=\"168\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3.png 350w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/logo-3-300x144.png 300w\" sizes=\"(max-width: 350px) 100vw, 350px\" />								</a>\n																					<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Contact Us\n					</a>', 'Elementor Header #44', '', 'inherit', 'closed', 'closed', '', '44-revision-v1', '', '', '2025-11-27 12:10:27', '2025-11-27 12:10:27', '', 44, 'https://mrarif.me/secureswipesolutions/?p=929', 0, 'revision', '', 0),
(930, 1, '2025-11-27 12:11:43', '2025-11-27 12:11:43', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero effort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traffic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-27 12:11:43', '2025-11-27 12:11:43', '', 10, 'https://mrarif.me/secureswipesolutions/?p=930', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(931, 1, '2025-11-27 12:11:44', '2025-11-27 12:11:44', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero effort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traffic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-27 12:11:44', '2025-11-27 12:11:44', '', 10, 'https://mrarif.me/secureswipesolutions/?p=931', 0, 'revision', '', 0);
INSERT INTO `wps_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(932, 1, '2025-11-27 12:11:44', '2025-11-27 12:11:44', '<h1>Reliable, Modern ATMs Installed in Your Business at No Cost to You</h1>		Boost revenue, improve customer experience, and offer convenient cash access.We handle the installation, maintenance, cash loading, and support.With zero effort required on your end.								<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Services Snapshot</h2>							\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\"><g id=\"Layer_25\" data-name=\"Layer 25\"><path d=\"m62 1h-60a1 1 0 0 0 -1 1v50a1 1 0 0 0 1 1h13v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-4.586l4.414-4.414h26.586a1 1 0 0 0 1-1v-50a1 1 0 0 0 -1-1zm-49 2h38v18h-38zm2 36v6h-2.1a5.016 5.016 0 0 0 -3.9-3.9v-10.1h20v10.1a5.016 5.016 0 0 0 -3.9 3.9h-2.1v-6a4 4 0 0 0 -8 0zm-8-10v-2h24v2zm2 14.184a3 3 0 0 1 1.816 1.816h-1.816zm20 0v1.816h-1.816a3 3 0 0 1 1.816-1.816zm.293 13.109a1 1 0 0 0 -.293.707v4h-12v-22a2 2 0 0 1 4 0v7a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-10.586l4 4v11.172zm31.707-5.293h-24v-12a1 1 0 0 0 -.293-.707l-5.707-5.707v-1.586h1a1 1 0 0 0 1-1v-4a1 1 0 0 0 -1-1h-26a1 1 0 0 0 -1 1v4a1 1 0 0 0 1 1h1v15a1 1 0 0 0 1 1h7v4h-12v-48h8v19a1 1 0 0 0 1 1h40a1 1 0 0 0 1-1v-19h8z\"></path><path d=\"m38 12h-3v-6a1 1 0 0 0 -1-1h-4a1 1 0 0 0 -1 1v6h-3a1 1 0 0 0 -.641 1.769l6 5a1 1 0 0 0 1.282 0l6-5a1 1 0 0 0 -.641-1.769zm-6 4.7-3.238-2.7h1.238a1 1 0 0 0 1-1v-6h2v6a1 1 0 0 0 1 1h1.238z\"></path><path d=\"m43 5h2v9h-2z\"></path><path d=\"m47 7h2v9h-2z\"></path><path d=\"m19 5h2v9h-2z\"></path><path d=\"m15 7h2v9h-2z\"></path><path d=\"m55 5h4v2h-4z\"></path><path d=\"m55 9h4v2h-4z\"></path><path d=\"m55 13h4v2h-4z\"></path><path d=\"m55 17h4v2h-4z\"></path><path d=\"m55 21h4v2h-4z\"></path><path d=\"m5 5h4v2h-4z\"></path><path d=\"m5 9h4v2h-4z\"></path><path d=\"m5 13h4v2h-4z\"></path><path d=\"m5 17h4v2h-4z\"></path><path d=\"m5 21h4v2h-4z\"></path><path d=\"m58 25h-18a1 1 0 0 0 -1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0 -1-1zm-1 6h-4v-4h4zm-10 6v-4h4v4zm4 2v4h-4v-4zm-6-2h-4v-4h4zm2-6v-4h4v4zm6 2h4v4h-4zm-8-6v4h-4v-4zm-4 12h4v4h-4zm12 4v-4h4v4z\"></path></g></svg>			\n									<h5>\n							Free ATM Installation 						\n					</h5>\n									<p>\n						We cover everything — the machine, delivery, installation, programming, and setup.No rental fees.					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Business_finance\" height=\"512\" viewBox=\"0 0 128 128\" width=\"512\"><g><path d=\"m61.497 65.793c6.536 0 11.854-5.318 11.854-11.854s-5.318-11.854-11.854-11.854-11.854 5.318-11.854 11.854 5.318 11.854 11.854 11.854zm0-21.709c5.434 0 9.854 4.421 9.854 9.854s-4.421 9.854-9.854 9.854-9.854-4.421-9.854-9.854 4.42-9.854 9.854-9.854z\"></path><path d=\"m26.182 106.605h60.689c2.839 4.272 7.69 7.096 13.192 7.096 8.73 0 15.833-7.103 15.833-15.833 0-5.969-3.322-11.174-8.213-13.871v-22.586l2.356-.674c.021-.006.035-.021.055-.028.067-.023.124-.058.183-.095.053-.032.105-.061.15-.101.048-.043.084-.095.123-.147.038-.051.077-.099.105-.156.027-.055.04-.113.057-.173.019-.067.037-.132.041-.203.001-.021.012-.038.012-.059v-14.92c0-4.963-4.037-9-9-9h-15.66v-3.49c0-4.655-3.552-8.495-8.088-8.954-.015-1.642-1.352-2.973-2.997-2.973h-27.045c-1.643 0-2.978 1.328-2.997 2.967-4.595.401-8.213 4.263-8.213 8.96v3.49h-15.66c-4.962 0-9 4.037-9 9v14.92c0 .021.011.039.012.06.004.07.022.134.041.201.017.06.03.119.057.175.028.057.067.105.105.156.039.052.075.103.123.146.045.041.099.07.152.102.059.036.115.07.181.094.02.007.034.023.055.029l2.352.673v34.196c-.001 6.064 4.934 10.998 10.999 10.998zm0-2c-4.962 0-9-4.037-9-9v-33.623l11.253 3.218v6.406c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-3.604l20.757 5.937c.81.231 1.642.347 2.475.347s1.666-.115 2.475-.347l20.756-5.936v3.603c0 1.654 1.346 3 3 3h3.769c1.654 0 3-1.346 3-3v-6.406l11.248-3.217v21.101c-1.75-.667-3.639-1.049-5.62-1.049-8.73 0-15.833 7.103-15.833 15.833 0 2.411.558 4.69 1.526 6.737zm4.253-33v-9.95h5.769v9.95c0 .552-.449 1-1 1h-3.769c-.552 0-1-.448-1-1zm56.231 0v-9.95h5.769v9.95c0 .552-.448 1-1 1h-3.769c-.552 0-1-.448-1-1zm27.23 26.263c0 7.628-6.205 13.833-13.833 13.833s-13.833-6.205-13.833-13.833 6.205-13.833 13.833-13.833 13.833 6.205 13.833 13.833zm-35.876-72.436c3.428.451 6.085 3.385 6.085 6.933v3.49h-2v-3.49c0-2.443-1.765-4.475-4.085-4.907zm-31.045-1.994c0-.552.449-1 1-1h27.045c.552 0 1 .448 1 1v6c0 .552-.448 1-1 1h-27.045c-.551 0-1-.448-1-1zm-1.996 6.045c.024 1.633 1.356 2.956 2.996 2.956h27.045c1.626 0 2.947-1.302 2.992-2.918 1.209.387 2.093 1.509 2.093 2.845v3.49h-37.34v-3.49c0-1.382.942-2.535 2.214-2.883zm-6.214 2.882c0-3.592 2.721-6.558 6.21-6.952v2.032c-2.38.382-4.21 2.434-4.21 4.92v3.49h-2zm-24.66 26.656v-14.166c0-3.859 3.14-7 7-7h80.66c3.859 0 7 3.141 7 7v14.165l-14.33 4.098v-2.463c0-.553-.447-1-1-1h-7.769c-.553 0-1 .447-1 1v5.266l-21.306 6.094c-1.259.361-2.59.361-3.85 0l-21.307-6.094v-5.266c0-.553-.448-1-1-1h-7.769c-.552 0-1 .447-1 1v2.464z\"></path><path d=\"m96.235 87.898v12.139h-2.111c-.634 0-1.194.35-1.428.892-.216.501-.112 1.063.265 1.463l5.938 6.385c.291.309.715.484 1.163.484h.002c.448 0 .872-.178 1.166-.49l5.929-6.373c.382-.405.485-.968.27-1.469-.233-.542-.794-.892-1.428-.892h-1.843v-12.139c0-.785-.69-1.424-1.539-1.424h-4.845c-.848.001-1.539.639-1.539 1.424zm2 13.139v-12.562h3.923v12.563c0 .553.447 1 1 1h1.604l-4.7 5.054-4.7-5.054h1.873c.553-.001 1-.448 1-1.001z\"></path><path d=\"m61.497 57.943c-.829 0-1.502-.674-1.502-1.503 0-.553-.448-1-1-1s-1 .447-1 1c0 1.644 1.142 3.017 2.671 3.392v1.159c0 .553.448 1 1 1s1-.447 1-1v-1.264c1.356-.483 2.334-1.767 2.334-3.287 0-1.932-1.571-3.503-3.503-3.503-.829 0-1.502-.674-1.502-1.503 0-.828.674-1.502 1.502-1.502s1.503.674 1.503 1.503c0 .553.448 1 1 1s1-.447 1-1c0-1.519-.978-2.802-2.334-3.286v-1.263c0-.553-.448-1-1-1s-1 .447-1 1v1.158c-1.529.376-2.671 1.748-2.671 3.391 0 1.932 1.571 3.503 3.502 3.503.829 0 1.503.674 1.503 1.503s-.674 1.502-1.503 1.502z\"></path></g></svg>			\n									<h5>\n							All the Value, None of the Work 						\n					</h5>\n									<p>\n						You get increased foot traffic and customer convenience.We manage every detail: cash loading, 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"OUTLINE\"><path d=\"M199.0293,146.34326l6.62695,6.627A23.84385,23.84385,0,0,0,222.627,160h66.7461a23.84385,23.84385,0,0,0,16.9707-7.02979L315.314,144H360V128H310.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-16-16a24.02784,24.02784,0,0,0-33.9414,0l-.68653.68652a8.97038,8.97038,0,0,1-12.68554-12.68652L259.31348,80h30.05957a7.94524,7.94524,0,0,1,5.65625,2.34326l6.627,6.62695A23.84385,23.84385,0,0,0,318.627,96H360V80H318.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.627-6.62695A23.84385,23.84385,0,0,0,289.37305,64H222.627a23.84385,23.84385,0,0,0-16.9707,7.02979l-6.62695,6.62695A7.94524,7.94524,0,0,1,193.37305,80H152V96h41.37305a23.84385,23.84385,0,0,0,16.9707-7.02979l6.62695-6.62695A7.94524,7.94524,0,0,1,222.627,80H236.686l-6.34327,6.34326a24.97075,24.97075,0,0,0,35.31446,35.31348l.68652-.68653a8.00771,8.00771,0,0,1,11.3125,0l16,16a24.26318,24.26318,0,0,0,3.30273,2.757l-1.92968,1.92957A7.94524,7.94524,0,0,1,289.37305,144H222.627a7.94524,7.94524,0,0,1-5.65625-2.34326l-6.62695-6.627A23.84385,23.84385,0,0,0,193.37305,128H152v16h41.37305A7.94524,7.94524,0,0,1,199.0293,146.34326Z\"></path><rect x=\"192\" y=\"184\" width=\"128\" height=\"16\"></rect><rect x=\"96\" y=\"224\" width=\"320\" height=\"16\"></rect><path d=\"M447.92041,280H448V40a24.02718,24.02718,0,0,0-24-24H88A24.02718,24.02718,0,0,0,64,40V472a24.02718,24.02718,0,0,0,24,24H376a119.96026,119.96026,0,0,0,71.92041-216ZM80,40a8.00917,8.00917,0,0,1,8-8H424a8.00917,8.00917,0,0,1,8,8V269.89612A119.85691,119.85691,0,0,0,332.92749,264H96v16H304.07959A121.02922,121.02922,0,0,0,280,304.07953V304H96v16H269.896A119.25264,119.25264,0,0,0,256,376c0,2.68878.09814,5.35474.27295,8H128v24a24,24,0,0,1-48,0ZM269.896,432H135.978A39.79015,39.79015,0,0,0,144,408v-8H258.41284A119.09158,119.09158,0,0,0,269.896,432ZM88,480a8.00917,8.00917,0,0,1-8-8V439.978A39.79015,39.79015,0,0,0,104,448H280v-.07953A120.91771,120.91771,0,0,0,316.18408,480Zm288,0A104,104,0,1,1,480,376,104.11791,104.11791,0,0,1,376,480Z\"></path><path d=\"M434.34277,306.34326,420.2937,320.39233A24.0208,24.0208,0,0,0,416,320h-8V304H392v16H360V304H344v16h-8a24.0275,24.0275,0,0,0-24,24v64a23.88827,23.88827,0,0,0,5.46143,15.22449l-11.11866,11.11877,11.31446,11.31348,14.04907-14.04907A24.0208,24.0208,0,0,0,336,432h80a24.0275,24.0275,0,0,0,24-24V344a23.88827,23.88827,0,0,0-5.46143-15.22449l11.11866-11.11877ZM336,336h68.686l-24,24H328V344A8.00917,8.00917,0,0,1,336,336Zm-8,72V376h36.686l-35.74878,35.74872A7.94727,7.94727,0,0,1,328,408Zm88,8H347.314l40-40H424v32A8.00917,8.00917,0,0,1,416,416Zm8-72v16H403.314l19.74878-19.74872A7.94727,7.94727,0,0,1,424,344Z\"></path><rect x=\"96\" y=\"344\" width=\"144\" height=\"16\"></rect></g></svg>			\n									<h5>\n							Flexible, Business-Friendly Terms 						\n					</h5>\n									<p>\n						No long-term contracts or penalties. If a location underperforms, we simply relocate the machine easily and stress-free. 					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><path d=\"m501 261.856c0-12.901-10.495-23.397-23.396-23.397h-51.835v-16.159c0-13.661-9.326-25.18-21.944-28.537v-54.246c0-17.282-14.061-31.342-31.343-31.342h-100.217c-2.797 0-5.282-1.321-6.818-3.623-1.535-2.302-1.8-5.104-.725-7.686 3.145-7.555 4.738-15.568 4.738-23.818 0-34.213-27.835-62.048-62.048-62.048s-62.049 27.835-62.049 62.049c0 8.247 1.594 16.26 4.738 23.818 1.075 2.582.811 5.384-.725 7.686s-4.021 3.623-6.818 3.623h-100.216c-17.282 0-31.342 14.06-31.342 31.342v100.216c0 6.105 3.019 11.763 8.075 15.136s11.439 3.985 17.075 1.64c6.333-2.635 13.055-3.971 19.977-3.971 28.7 0 52.049 23.349 52.049 52.049s-23.349 52.049-52.049 52.049c-6.922 0-13.643-1.336-19.977-3.971-5.634-2.344-12.018-1.731-17.075 1.64-5.056 3.373-8.075 9.031-8.075 15.135v100.217c0 17.282 14.06 31.342 31.342 31.342h330.139c17.282 0 31.343-14.06 31.343-31.342v-53.254h67.646c12.901 0 23.397-10.496 23.397-23.397v-86.393c3.937-4.88 6.132-11.015 6.132-17.744v-27.014zm-10 0v27.014c0 7.225-3.885 13.408-10.393 16.542-19.095 9.199-37.463 13.878-62.486 15.833-2.609-7.954-10.094-13.72-18.91-13.72h-36.876c-8.816 0-16.3 5.766-18.91 13.72-25.021-1.955-43.389-6.634-62.486-15.833-6.508-3.134-10.393-9.317-10.393-16.542v-27.014c0-7.387 6.01-13.397 13.396-13.397h193.661c7.387 0 13.397 6.01 13.397 13.397zm-81.882 65.576c0 5.463-4.444 9.907-9.907 9.907h-36.876c-5.463 0-9.907-4.444-9.907-9.907s4.444-9.907 9.907-9.907h36.876c5.462-.001 9.907 4.444 9.907 9.907zm-8.068-88.973h-40.556v-16.159c0-2.608 2.203-4.812 4.812-4.812h30.933c2.608 0 4.812 2.204 4.812 4.812v16.159zm14.718-16.158v16.159h-4.718v-16.159c0-8.167-6.645-14.812-14.812-14.812h-30.933c-8.167 0-14.812 6.645-14.812 14.812v16.159h-4.718v-16.159c0-10.769 8.761-19.529 19.529-19.529h30.933c10.77-.001 19.531 8.76 19.531 19.529zm-21.944 247.357c0 11.768-9.574 21.342-21.343 21.342h-330.139c-11.767 0-21.342-9.574-21.342-21.342v-100.217c0-2.796 1.321-5.28 3.624-6.816 2.304-1.534 5.104-1.798 7.685-.727 7.558 3.145 15.571 4.738 23.818 4.738 34.214 0 62.049-27.835 62.049-62.049s-27.835-62.049-62.049-62.049c-8.247 0-16.261 1.594-23.818 4.739-2.579 1.074-5.38.81-7.685-.727-2.302-1.536-3.624-4.02-3.624-6.816v-100.216c0-11.768 9.574-21.342 21.342-21.342h100.216c6.106 0 11.766-3.019 15.138-8.075s3.984-11.44 1.638-17.077c-2.635-6.333-3.971-13.054-3.971-19.976 0-28.7 23.349-52.049 52.049-52.049s52.049 23.349 52.049 52.049c0 6.924-1.336 13.645-3.971 19.975-2.347 5.637-1.734 12.021 1.638 17.077s9.031 8.075 15.138 8.075h100.216c11.769 0 21.343 9.574 21.343 21.342v53.253h-28.518c-16.282 0-29.529 13.247-29.529 29.529v16.159h-51.835c-12.9 0-23.396 10.496-23.396 23.397v27.014c0 6.729 2.195 12.864 6.132 17.744v86.393c0 12.901 10.496 23.397 23.397 23.397h103.749v53.255zm77.646-63.254h-181.395c-7.388 0-13.397-6.01-13.397-13.397v-78.548c20.031 9.636 40.028 14.724 66.123 16.765 1.777 9.168 9.855 16.115 19.535 16.115h36.876c9.679 0 17.758-6.947 19.535-16.115 26.098-2.042 46.094-7.129 66.123-16.765v78.548c-.002 7.388-6.012 13.397-13.4 13.397z\"></path></svg>			\n									<h5>\n							A Smart Fit for Your Business 						\n					</h5>\n									<p>\n						Perfect for salons, barbershops, dispensaries, wellness spas, smoke shops, retail stores,					</p>\n							<h2>Why Choose Us</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m126.7 72.5a66.037 66.037 0 0 1 132.074 0c-.003 120.244-132.074 120.244-132.074 0zm-15.711 233.4a7.2 7.2 0 0 1 14.4 0v54.934h134.7v-54.934a7.184 7.184 0 1 1 14.367 0v54.934h52.223v-73.76c0-52.923-43.306-96.229-96.2-96.229h-7.908l-3.55 26.683a13.33 13.33 0 0 1 -6.207 9.495l11.5 68.594a7.2 7.2 0 0 1 -1.232 5.36l-24.482 34.45a7.2 7.2 0 0 1 -11.734 0l-24.48-34.446a7.192 7.192 0 0 1 -1.232-5.356l11.475-68.625a13.357 13.357 0 0 1 -6.176-9.457l-3.551-26.69h-7.902c-52.923 0-96.229 43.306-96.229 96.229v73.76h52.223zm72.33-89.663a31.57 31.57 0 0 0 9.346 1.295h.13c6.467 0 10.762-1.509 12.028-2.487l3.22-24.2h-30.618l3.214 24.155a7.736 7.736 0 0 0 1.965.989 7.35 7.35 0 0 1 .715.252zm9.415 102.59 16.889-23.763-10.649-63.487a53.959 53.959 0 0 1 -5.827.351h-.37a53.109 53.109 0 0 1 -6.315-.372l-10.617 63.5zm236.4-158.61-8.276-1.108a2.409 2.409 0 0 0 -2.681 1.253l-4.372 7.169a31.885 31.885 0 0 1 -7.839 8.743l21.161 32.526 8.539-26.024 27.248 2.768-17.747-27.334a31.385 31.385 0 0 1 -16.029 2.011zm-72.3 3.409a2.422 2.422 0 0 0 -2.8-.991l-8.131 1.982a31.13 31.13 0 0 1 -25.383-4.721l-16.67 25.645 27.249-2.768 8.539 26.024 23.842-36.657c-.524-.583-1.049-1.195-1.544-1.836zm62.51-81.424a36.016 36.016 0 0 0 -71.953 3.352 7.472 7.472 0 0 1 .059.845h-.029a36.124 36.124 0 0 0 37.389 33.718 3.948 3.948 0 0 1 .846-.059 36.006 36.006 0 0 0 33.688-37.856zm-13.434 70.671-4.4 7.169a17.088 17.088 0 0 1 -28.152 1.486l-5.129-6.673a16.8 16.8 0 0 0 -17.6-6.208l-8.1 1.982a17.1 17.1 0 0 1 -21.012-18.855l1.078-8.277a16.729 16.729 0 0 0 -8.043-16.844l-7.14-4.342a17.1 17.1 0 0 1 -1.516-28.181l6.616-5.071a16.764 16.764 0 0 0 6.207-17.6l-1.981-8.131a17.091 17.091 0 0 1 18.855-20.982l8.364 1.078a16.777 16.777 0 0 0 16.786-7.956l4.546-7.344a17.081 17.081 0 0 1 28.062-1.484l5.3 6.819a16.7 16.7 0 0 0 17.515 6.149l8.218-1.981a16.58 16.58 0 0 1 15.446 3.934 16.7 16.7 0 0 1 5.507 14.979l-1.107 8.276a16.782 16.782 0 0 0 8.014 16.845l7.14 4.371a17.07 17.07 0 0 1 1.457 28.152l-6.644 5.07a16.782 16.782 0 0 0 -6.237 17.6l1.953 8.13a17.089 17.089 0 0 1 -18.885 20.954l-8.276-1.108a16.8 16.8 0 0 0 -16.84 8.047zm14.921-35.059a50.392 50.392 0 1 0 -87.778-31.59v.176l.029.379a50.372 50.372 0 0 0 52.4 47.677h.175v-.029h.378a50.3 50.3 0 0 0 34.798-16.609zm-321.761 298.249-10.4-32.2-10.374 32.2-33.868-.063 27.423 19.847-10.52 32.173 27.335-19.963 27.365 19.963-10.52-32.173 27.423-19.847zm107.041 29-13.377-41.47-13.4 41.47-43.6-.059 35.321 25.558-13.555 41.438 35.233-25.7 35.234 25.7-13.58-41.441 35.35-25.559zm101.066-29-10.4-32.2-10.4 32.2-33.842-.063 27.423 19.847-10.521 32.173 27.336-19.963 27.336 19.963-10.521-32.173 27.423-19.847z\"></path></svg>				\n									<h5>\n							Local Expertise						\n					</h5>\n									<p>\n						Based in Los Angeles and serving surrounding areas — quick response, personalized service. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\" data-name=\"Layer 1\"><path d=\"m13.8 276.058a40.937 40.937 0 0 1 1.511-26.849l64.749-163.857c2.487-6.3 7.607-11.864 12.385-13.538a6.421 6.421 0 0 1 5.7.392 7.812 7.812 0 0 0 2 .827 16.256 16.256 0 0 1 11.413 19.767l-36.276 135.347a8.715 8.715 0 0 0 -.243 2.491c-.049.042-.1.082-.147.123a38.3 38.3 0 0 0 -8.727 35.707l22.379 83.432a8.254 8.254 0 1 0 15.944-4.278l-22.331-83.433a21.756 21.756 0 1 1 42.029-11.264l27.742 103.708a45 45 0 0 1 -10.921 39.191 7.616 7.616 0 0 0 -.732.9l-88.347 23.676zm42.857 235.942 130.425-34.951-19.454-72.539-130.428 34.951zm20.576-56.4a8.28 8.28 0 0 1 -16.433 2.061 8.28 8.28 0 0 1 16.433-2.061zm378.159 56.4-130.474-34.951 19.454-72.539 130.428 34.951zm42.808-235.942a40.931 40.931 0 0 0 -1.511-26.849l-64.749-163.857c-2.487-6.3-7.606-11.864-12.385-13.538a6.421 6.421 0 0 0 -5.7.392 7.812 7.812 0 0 1 -2 .827 16.255 16.255 0 0 0 -11.412 19.767l36.275 135.343a8.752 8.752 0 0 1 .244 2.491c.048.042.1.082.146.123a38.3 38.3 0 0 1 8.727 35.707l-22.379 83.436a8.254 8.254 0 1 1 -15.944-4.278l22.331-83.433a21.732 21.732 0 1 0 -41.98-11.264l-27.791 103.708a45 45 0 0 0 10.921 39.191 7.616 7.616 0 0 1 .732.9l88.347 23.676zm-63.237 178.574a8.3 8.3 0 0 0 6.046 10.024 7.944 7.944 0 0 0 2 .25 8.275 8.275 0 1 0 -8.044-10.285v.011zm-105.023-236.168 23.4-23.409a8.218 8.218 0 0 0 .976-10.489l-10.337-15.253a99.956 99.956 0 0 0 8.338-20.071l18.089-3.453a8.284 8.284 0 0 0 6.728-8.122v-33.1a8.277 8.277 0 0 0 -6.728-8.114l-18.089-3.46a100.174 100.174 0 0 0 -8.338-20.071l10.337-15.255a8.218 8.218 0 0 0 -.976-10.489l-23.4-23.407a8.278 8.278 0 0 0 -10.483-.995l-15.257 10.364a100.025 100.025 0 0 0 -20.088-8.327l-3.461-18.1a8.243 8.243 0 0 0 -8.098-6.713h-33.106a8.243 8.243 0 0 0 -8.094 6.714l-3.462 18.1a100.041 100.041 0 0 0 -20.091 8.326l-15.257-10.366a8.261 8.261 0 0 0 -10.483.995l-23.4 23.407a8.216 8.216 0 0 0 -.975 10.489l10.333 15.255a99.932 99.932 0 0 0 -8.338 20.071l-18.088 3.46a8.276 8.276 0 0 0 -6.729 8.114v33.1a8.284 8.284 0 0 0 6.729 8.122l18.088 3.453a99.956 99.956 0 0 0 8.338 20.071l-10.336 15.253a8.216 8.216 0 0 0 .975 10.489l23.4 23.409a8.278 8.278 0 0 0 10.483.992l15.26-10.365a100 100 0 0 0 20.087 8.331l3.462 18.1a8.246 8.246 0 0 0 8.094 6.718h33.106a8.246 8.246 0 0 0 8.094-6.718l3.461-18.095a99.982 99.982 0 0 0 20.088-8.331l15.261 10.367a8.278 8.278 0 0 0 10.483-.992zm-73.916-149.286a51.938 51.938 0 1 1 -51.975 51.943 52 52 0 0 1 51.975-51.943zm0 87.34a35.4 35.4 0 1 1 35.4-35.4 35.462 35.462 0 0 1 -35.4 35.4z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Hands-On Support 						\n					</h5>\n									<p>\n						You get direct communication and real accountability. No corporate runaround, ever. \n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\" data-name=\"Layer 1\"><path d=\"m451.085 45.423c.255 13.133-.015 25.392-5.994 31.062a14.627 14.627 0 0 1 -6.9 3.433 157.272 157.272 0 0 0 7.717-37.34l2.35.031a2.855 2.855 0 0 1 2.821 2.815zm-74.329-36.423c35.146 0 54.1 10.873 54.1 15.318s-18.956 15.318-54.103 15.318-54.118-10.873-54.118-15.318 18.965-15.318 54.121-15.318zm-74.235 36.423a2.866 2.866 0 0 1 2.835-2.813l2.283-.033a158 158 0 0 0 7.78 37.341 14.55 14.55 0 0 1 -6.95-3.433c-6.428-6.087-6.15-20.519-5.948-31.062zm29.773 37.51a153.992 153.992 0 0 1 -9.563-39.076c13.315 7.066 33.737 10.7 54.022 10.7 20.307 0 40.751-3.646 54.065-10.734a152.658 152.658 0 0 1 -9.5 39.109c-12.268 25.391-26.755 37.457-44.247 36.807a4.308 4.308 0 0 0 -.533 0c-17.46.628-31.978-11.416-44.246-36.808zm79.3 66.953v5.745h-68.78v-5.745c0-.385.235-.751.49-.751h67.806c.244 0 .477.367.48.751zm-23.643-8h-20.051c.269-5.033.478-9.987.681-15.02 5.408 4.708 13.262 4.11 18.6-2.2.217 5.787.469 11.509.769 17.224zm-244.062 344.836-28.195 16.278-54.841-95 28.2-16.277a7.462 7.462 0 0 1 10.188 2.74l47.382 82.056a7.479 7.479 0 0 1 -2.729 10.2zm266.678-99.217c.254-4.807-2.709-9.626-7.72-12.588-3.442-2.037-12.819-5.938-25.38 1.854-.116.075-.241.149-.362.213l-77.654 42.308c-15.126 11.224-44.063 9.252-90.967-6.193a7.463 7.463 0 1 1 4.669-14.177c23.451 7.728 40.081 11.139 51.868 12.162 8.08-4.317 12.792-8.955 12.952-12.823.191-4.371-5.115-10.341-14.178-15.968-27.7-17.194-80.209-26.714-97.1-17.63-1.705 1.023-18.963 11.426-50 30.175l36.905 63.925 3.483-2.228c3.773-2.44 6.235-3.272 10.765-1.683.513.181 1.035.362 1.8.575l75.213 20.658c.17.053.331.1.489.16 12.782 4.455 24.031 3.454 34.388-3.07a.761.761 0 0 0 .129-.076l116.063-69.978a6.322 6.322 0 0 1 .735-.394c8.666-3.976 13.6-9.38 13.9-15.222zm-310.567 32.522-7.45-12.908a7.463 7.463 0 1 0 -12.927 7.46l7.447 12.909a7.48 7.48 0 0 0 6.471 3.732 7.363 7.363 0 0 0 3.719-1 7.462 7.462 0 0 0 2.74-10.193zm95-152.217a7.461 7.461 0 0 0 -7.466 7.463v60.736a7.456 7.456 0 0 0 7.466 7.462h48.6a7.455 7.455 0 0 0 7.46-7.461v-60.737a7.46 7.46 0 0 0 -7.466-7.462zm72.876-37.223v105.422a7.455 7.455 0 0 0 7.46 7.462h48.6a7.453 7.453 0 0 0 7.458-7.461v-105.423a7.462 7.462 0 0 0 -7.462-7.46h-48.589a7.465 7.465 0 0 0 -7.464 7.461zm136.4 112.884a7.452 7.452 0 0 0 7.458-7.461v-153.037a7.464 7.464 0 0 0 -7.463-7.462h-48.587a7.474 7.474 0 0 0 -7.466 7.463v153.036a7.462 7.462 0 0 0 7.459 7.462zm-236.268-113a7.449 7.449 0 0 1 2.728-10.19l103.506-59.768-12.889-4.179a7.458 7.458 0 1 1 4.6-14.187l28.878 9.359a7.47 7.47 0 0 1 4.969 8.794l-7.086 30.347a7.472 7.472 0 0 1 -7.261 5.767 7.331 7.331 0 0 1 -1.706-.2 7.451 7.451 0 0 1 -5.564-8.954l3.177-13.613-103.16 59.553a7.455 7.455 0 0 1 -10.193-2.728z\" fill-rule=\"evenodd\"></path></svg>				\n									<h5>\n							Invested in Your Success 						\n					</h5>\n									<p>\n						Your ATM’s performance is our performance. We make sure it runs smoothly, consistently,\n					</p>\n												<a href=\"https://mrarif.me/secureswipesolutions/why-choose-us/\">\n									learn more\n					</a>\n									<h3>Ready to offer your customers easy access to cash, at no cost to you?</h3>							<ul>\n							<li>\n										We’ll reach out within 24 hours. \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/secureswipesolutions/contact-us/\">\n									Request a Free ATM\n					</a>\n									<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"318\" height=\"609\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm.png 318w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-157x300.png 157w\" sizes=\"(max-width: 318px) 100vw, 318px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose.jpeg 1000w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-300x200.jpeg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/Why-Choose-768x512.jpeg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Machines </h2>					<h6>Modern, Reliable ATMs</h6>		We place upgraded, high-performance machines designed for security, uptime, and fast transactions. Clean, professional appearance that fits seamlessly into your business. 													<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/atm-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1.jpg 1500w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-300x200.jpg 300w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-1024x683.jpg 1024w, https://mrarif.me/secureswipesolutions/wp-content/uploads/2025/11/10895-1-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>\nContact us</h2>		Ready to add value to your location? Let’s talk.					\n				<a href=\"tel:8182628674\" tabindex=\"-1\" aria-label=\"Call us\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>				</a>\n									<h6>\n						<a href=\"tel:8182628674\" >\n							Call us						</a>\n					</h6>\n									<p>\n						(818) 262-8674					</p>\n				<a href=\"mailto:admin@SecureSwipeATMs.com\" tabindex=\"-1\" aria-label=\"Email\">\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>				</a>\n									<h6>\n						<a href=\"mailto:admin@SecureSwipeATMs.com\" >\n							Email						</a>\n					</h6>\n									<p>\n						admin@SecureSwipeATMs.com					</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2025-11-27 12:11:44', '2025-11-27 12:11:44', '', 10, 'https://mrarif.me/secureswipesolutions/?p=932', 0, 'revision', '', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wps_termmeta`
--

CREATE TABLE `wps_termmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `term_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wps_terms`
--

CREATE TABLE `wps_terms` (
  `term_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wps_terms`
--

INSERT INTO `wps_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'Primary', 'primary', 0),
(3, 'header', 'header', 0),
(4, 'footer', 'footer', 0),
(5, 'page', 'page', 0),
(6, 'container', 'container', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wps_term_relationships`
--

CREATE TABLE `wps_term_relationships` (
  `object_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wps_term_relationships`
--

INSERT INTO `wps_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(31, 2, 0),
(32, 2, 0),
(35, 2, 0),
(34, 2, 0),
(44, 3, 0),
(47, 3, 0),
(369, 4, 0),
(613, 5, 0),
(741, 2, 0),
(742, 6, 0),
(744, 5, 0),
(763, 2, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wps_term_taxonomy`
--

CREATE TABLE `wps_term_taxonomy` (
  `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL,
  `term_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wps_term_taxonomy`
--

INSERT INTO `wps_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'nav_menu', '', 0, 6),
(3, 3, 'elementor_library_type', '', 0, 1),
(4, 4, 'elementor_library_type', '', 0, 1),
(5, 5, 'elementor_library_type', '', 0, 2),
(6, 6, 'elementor_library_type', '', 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `wps_usermeta`
--

CREATE TABLE `wps_usermeta` (
  `umeta_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wps_usermeta`
--

INSERT INTO `wps_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'web-admin'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'syntax_highlighting', 'true'),
(7, 1, 'comment_shortcuts', 'false'),
(8, 1, 'admin_color', 'fresh'),
(9, 1, 'use_ssl', '0'),
(10, 1, 'show_admin_bar_front', 'true'),
(11, 1, 'locale', ''),
(12, 1, 'wps_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(13, 1, 'wps_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', 'theme_editor_notice'),
(15, 1, 'show_welcome_panel', '0'),
(16, 1, 'session_tokens', 'a:3:{s:64:\"b005b68a2d14f3abf8e4097957e3b9df3d3291195cd515f7e6d3879ce7cca1ab\";a:4:{s:10:\"expiration\";i:1764420444;s:2:\"ip\";s:12:\"45.120.96.21\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36\";s:5:\"login\";i:1763210844;}s:64:\"abd31ff6a236ad93875096247b466d8ba4e0269b0b6da75de9b0a3f024ccdf99\";a:4:{s:10:\"expiration\";i:1764416248;s:2:\"ip\";s:12:\"45.120.96.21\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36\";s:5:\"login\";i:1764243448;}s:64:\"693be6b0b54da79b268b67fa39eb99df06067223601cacf6d4ae5c97306a8f70\";a:4:{s:10:\"expiration\";i:1764525283;s:2:\"ip\";s:13:\"45.120.99.251\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36\";s:5:\"login\";i:1764352483;}}'),
(17, 1, 'wps_dashboard_quick_press_last_post_id', '598'),
(18, 1, 'community-events-location', 'a:1:{s:2:\"ip\";s:11:\"45.120.99.0\";}'),
(19, 1, 'astra-sites-on-active', 'notice-dismissed'),
(20, 1, 'elementor_admin_notices', 'a:1:{s:27:\"local_google_fonts_disabled\";a:2:{s:9:\"is_viewed\";b:1;s:4:\"meta\";a:0:{}}}'),
(21, 1, 'elementor_introduction', 'a:2:{s:27:\"ai-get-started-announcement\";b:1;s:20:\"globals_introduction\";b:1;}'),
(22, 1, 'wps_user-settings', 'editor=html&libraryContent=browse'),
(23, 1, 'wps_user-settings-time', '1764061888'),
(24, 1, 'wps_elementor_connect_common_data', 'a:7:{s:9:\"client_id\";s:32:\"siwUYgeeYjDmmbtkHdR1y4ud9BcRdk7k\";s:11:\"auth_secret\";s:32:\"wGn6UFI0IsePJdaKlWU329I3lH6h0Fxc\";s:12:\"access_token\";s:312:\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI2MTQ4NjIiLCJhdWQiOiJodHRwczovL21yYXJpZi5tZS9zZWN1cmVzd2lwZXNvbHV0aW9ucy8iLCJjbGllbnRfaWQiOiJzaXdVWWdlZVlqRG1tYnRrSGRSMXk0dWQ5QmNSZGs3ayIsImNvbm5lY3RfdHlwZSI6ImFjdGl2YXRlIiwiaWF0IjoxNzYzMjEwODY5LCJleHAiOjMxNzMwNzY1MzI2OX0.qGbjLFgQpoB75SqUY9yIVjO5v_FSx5P2LW_PjQ8NssI\";s:19:\"access_token_secret\";s:32:\"nHrSf0mO7FQ4pIL5azq2w1dqkhkRFY6M\";s:10:\"token_type\";s:6:\"bearer\";s:4:\"user\";O:8:\"stdClass\":1:{s:5:\"email\";s:21:\"arifbabu587@gmail.com\";}s:19:\"data_share_opted_in\";b:1;}'),
(25, 1, 'managenav-menuscolumnshidden', 'a:4:{i:0;s:11:\"link-target\";i:1;s:15:\"title-attribute\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),
(26, 1, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'),
(27, 1, 'nav_menu_recently_edited', '2'),
(28, 2, 'nickname', 'admin@secureswipeatms.com'),
(29, 2, 'first_name', ''),
(30, 2, 'last_name', ''),
(31, 2, 'description', ''),
(32, 2, 'rich_editing', 'true'),
(33, 2, 'syntax_highlighting', 'true'),
(34, 2, 'comment_shortcuts', 'false'),
(35, 2, 'admin_color', 'fresh'),
(36, 2, 'use_ssl', '0'),
(37, 2, 'show_admin_bar_front', 'true'),
(38, 2, 'locale', ''),
(39, 2, 'wps_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(40, 2, 'wps_user_level', '10'),
(41, 2, 'dismissed_wp_pointers', ''),
(42, 2, 'show_welcome_panel', '1'),
(43, 2, 'session_tokens', 'a:1:{s:64:\"f923960f97d969aa1bb632d7e00e2863bb05ca5e9cf286bcca4d954061c9096e\";a:4:{s:10:\"expiration\";i:1764524789;s:2:\"ip\";s:13:\"45.120.99.249\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36\";s:5:\"login\";i:1764351989;}}'),
(44, 3, 'nickname', 'web_reon'),
(45, 3, 'first_name', 'Mary'),
(46, 3, 'last_name', ''),
(47, 3, 'description', ''),
(48, 3, 'rich_editing', 'true'),
(49, 3, 'syntax_highlighting', 'true'),
(50, 3, 'comment_shortcuts', 'false'),
(51, 3, 'admin_color', 'fresh'),
(52, 3, 'use_ssl', '0'),
(53, 3, 'show_admin_bar_front', 'true'),
(54, 3, 'locale', ''),
(55, 3, 'wps_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(56, 3, 'wps_user_level', '10'),
(57, 3, 'dismissed_wp_pointers', ''),
(58, 3, 'session_tokens', 'a:4:{s:64:\"fd68fe36b53717dc513336195f7e17ce1b29097feda89295d84a31974a12cd77\";a:4:{s:10:\"expiration\";i:1751528954;s:2:\"ip\";s:13:\"102.89.69.212\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36\";s:5:\"login\";i:1751356154;}s:64:\"a1a168a35ea56e34929c697ded3d5089bf6ee195b9f1e793dd85220e17136a07\";a:4:{s:10:\"expiration\";i:1751529111;s:2:\"ip\";s:13:\"102.89.69.212\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36\";s:5:\"login\";i:1751356311;}s:64:\"c770a2e19460ad445fd9288b16fc6066ddbc0971e96603024d6c16c9f8106b90\";a:4:{s:10:\"expiration\";i:1751603824;s:2:\"ip\";s:13:\"102.89.69.172\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36\";s:5:\"login\";i:1751431024;}s:64:\"19735761c2939096686e122d14c79a55dbbaec2cee7bf44e754aa309e4666242\";a:4:{s:10:\"expiration\";i:1751603946;s:2:\"ip\";s:13:\"102.89.69.172\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36\";s:5:\"login\";i:1751431146;}}'),
(59, 4, 'nickname', 'web-reon'),
(60, 4, 'first_name', ''),
(61, 4, 'last_name', ''),
(62, 4, 'description', ''),
(63, 4, 'rich_editing', 'true'),
(64, 4, 'syntax_highlighting', 'true'),
(65, 4, 'comment_shortcuts', 'false'),
(66, 4, 'admin_color', 'fresh'),
(67, 4, 'use_ssl', '0'),
(68, 4, 'show_admin_bar_front', 'true'),
(69, 4, 'locale', ''),
(70, 4, 'wps_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(71, 4, 'wps_user_level', '10'),
(72, 4, 'dismissed_wp_pointers', ''),
(73, 4, 'session_tokens', 'a:6:{s:64:\"b00252888affce9ec0ae98c9d4156dbcfaaab80aef02744665b5627733f88189\";a:4:{s:10:\"expiration\";i:1751659016;s:2:\"ip\";s:13:\"102.89.84.100\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36\";s:5:\"login\";i:1751486216;}s:64:\"a4405f642c6a714a904b53bf43dc7b613e7bc0fad5c12474c2e8da90746c7c8f\";a:4:{s:10:\"expiration\";i:1751659033;s:2:\"ip\";s:13:\"102.89.84.100\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36\";s:5:\"login\";i:1751486233;}s:64:\"7ddbb4918a53c6ff89fc052506028f85e90e85f1eaccce92c4c7582fa7450cae\";a:4:{s:10:\"expiration\";i:1751659039;s:2:\"ip\";s:13:\"102.89.84.100\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36\";s:5:\"login\";i:1751486239;}s:64:\"b3a92440a38ff4d78131923c079c4d8329a0bb3e1d2ae46ba4a198241b02f612\";a:4:{s:10:\"expiration\";i:1751659049;s:2:\"ip\";s:13:\"102.89.84.100\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36\";s:5:\"login\";i:1751486249;}s:64:\"b6e538de21d0bec1f9514302c9a06d2e3b6311525a4d84d3834b3a2eabf5e762\";a:4:{s:10:\"expiration\";i:1751695843;s:2:\"ip\";s:13:\"102.89.84.100\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36\";s:5:\"login\";i:1751523043;}s:64:\"e894d33d24a55b32fbd39c2fd185d68cace29f8cf43ea9024eea30f6045c0b7a\";a:4:{s:10:\"expiration\";i:1751829074;s:2:\"ip\";s:13:\"102.89.68.156\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36\";s:5:\"login\";i:1751656274;}}');

-- --------------------------------------------------------

--
-- Table structure for table `wps_users`
--

CREATE TABLE `wps_users` (
  `ID` bigint(20) UNSIGNED NOT NULL,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wps_users`
--

INSERT INTO `wps_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'web-admin', '$wp$2y$10$aD/WmPGuo92z12ujyaAD1.28NBqcbgl6MasGcpnNN7wvmW5VMaO/W', 'web-admin', 'arifwebsols@gmail.com', 'https://mrarif.me/secureswipesolutions', '2025-11-15 12:28:07', '', 0, 'web-admin'),
(2, 'admin@secureswipeatms.com', '$wp$2y$10$sddxAx3aU72SLE8DvrsGcOQHREmaUqSMBeOup7eex9ZcSOP7s7l1y', 'adminsecureswipeatms-com', 'admin@secureswipeatms.com', 'http://ayeshad.sg-host.com', '2025-07-01 04:31:29', '', 0, 'admin@secureswipeatms.com'),
(3, 'web_reon', '$wp$2y$10$WX3ic5NcApitc99g/UsDPOUS81VbmxtJ9iAf0B27DkEhsxF1ug.ha', 'web_reon', 'Webreon14@gmail.com', 'http://ayeshad.sg-host.com', '2025-07-01 04:48:39', '', 0, 'Mary'),
(4, 'web-reon', '$wp$2y$10$B19ZJi9UTLGWcFiFh46ekewnFXO.OT9VuGsqnB49DNzUslDNAS2CO', 'web-reon', 'yomitaiwo14@gmail.com', '', '2025-07-02 05:25:36', '', 0, 'web-reon');

-- --------------------------------------------------------

--
-- Table structure for table `wps_wt_iew_action_history`
--

CREATE TABLE `wps_wt_iew_action_history` (
  `id` int(11) NOT NULL,
  `template_type` varchar(255) NOT NULL,
  `item_type` varchar(255) NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `created_at` int(11) NOT NULL DEFAULT 0,
  `status` int(11) NOT NULL DEFAULT 0,
  `status_text` varchar(255) NOT NULL,
  `offset` int(11) NOT NULL DEFAULT 0,
  `total` int(11) NOT NULL DEFAULT 0,
  `data` longtext NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wps_wt_iew_action_history`
--

INSERT INTO `wps_wt_iew_action_history` (`id`, `template_type`, `item_type`, `file_name`, `created_at`, `status`, `status_text`, `offset`, `total`, `data`) VALUES
(1, 'import', 'user', 'temp_user_1764352642.csv', 1764352649, 1, 'Finished', 0, 4829, '{\"post_type_form_data\":{\"item_type\":\"user\"},\"method_import_form_data\":{\"method_import\":\"new\",\"selected_template\":\"0\",\"wt_iew_file_from\":\"local\",\"wt_iew_local_file\":\"https:\\/\\/mrarif.me\\/secureswipesolutions\\/wp-content\\/webtoffee_import\\/local_file_1764352553_user_export_2025-11-28-05-53-07.csv\",\"wt_iew_delimiter_preset\":\"comma\"},\"mapping_form_data\":{\"mapping_fields\":{\"ID\":[\"{ID}\",1],\"customer_id\":[\"{customer_id}\",1],\"user_login\":[\"{user_login}\",1],\"user_pass\":[\"{user_pass}\",1],\"user_nicename\":[\"{user_nicename}\",1],\"user_email\":[\"{user_email}\",1],\"user_url\":[\"{user_url}\",1],\"user_registered\":[\"{user_registered}\",1],\"display_name\":[\"{display_name}\",1],\"first_name\":[\"{first_name}\",1],\"last_name\":[\"{last_name}\",1],\"user_status\":[\"{user_status}\",1],\"roles\":[\"{roles}\",1],\"nickname\":[\"{nickname}\",1],\"description\":[\"{description}\",1],\"rich_editing\":[\"{rich_editing}\",1],\"syntax_highlighting\":[\"{syntax_highlighting}\",1],\"admin_color\":[\"{admin_color}\",1],\"use_ssl\":[\"{use_ssl}\",1],\"show_admin_bar_front\":[\"{show_admin_bar_front}\",1],\"locale\":[\"{locale}\",1],\"wp_user_level\":[\"\",0],\"dismissed_wp_pointers\":[\"{dismissed_wp_pointers}\",1],\"show_welcome_panel\":[\"{show_welcome_panel}\",1],\"session_tokens\":[\"{session_tokens}\",1],\"last_update\":[\"{last_update}\",1],\"is_guest_user\":[\"{is_guest_user}\",1]},\"mapping_selected_fields\":{\"ID\":\"{ID}\",\"customer_id\":\"{customer_id}\",\"user_login\":\"{user_login}\",\"user_pass\":\"{user_pass}\",\"user_nicename\":\"{user_nicename}\",\"user_email\":\"{user_email}\",\"user_url\":\"{user_url}\",\"user_registered\":\"{user_registered}\",\"display_name\":\"{display_name}\",\"first_name\":\"{first_name}\",\"last_name\":\"{last_name}\",\"user_status\":\"{user_status}\",\"roles\":\"{roles}\",\"nickname\":\"{nickname}\",\"description\":\"{description}\",\"rich_editing\":\"{rich_editing}\",\"syntax_highlighting\":\"{syntax_highlighting}\",\"admin_color\":\"{admin_color}\",\"use_ssl\":\"{use_ssl}\",\"show_admin_bar_front\":\"{show_admin_bar_front}\",\"locale\":\"{locale}\",\"dismissed_wp_pointers\":\"{dismissed_wp_pointers}\",\"show_welcome_panel\":\"{show_welcome_panel}\",\"session_tokens\":\"{session_tokens}\",\"last_update\":\"{last_update}\",\"is_guest_user\":\"{is_guest_user}\"}},\"meta_step_form_data\":{\"mapping_fields\":[],\"mapping_selected_fields\":[]},\"advanced_form_data\":{\"wt_iew_found_action\":\"skip\",\"wt_iew_skip_guest_user\":\"1\",\"wt_iew_batch_count\":10}}');

-- --------------------------------------------------------

--
-- Table structure for table `wps_wt_iew_mapping_template`
--

CREATE TABLE `wps_wt_iew_mapping_template` (
  `id` int(11) NOT NULL,
  `template_type` varchar(255) NOT NULL,
  `item_type` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `data` longtext NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Indexes for dumped tables
--

--
-- Indexes for table `wps_commentmeta`
--
ALTER TABLE `wps_commentmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `comment_id` (`comment_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wps_comments`
--
ALTER TABLE `wps_comments`
  ADD PRIMARY KEY (`comment_ID`),
  ADD KEY `comment_post_ID` (`comment_post_ID`),
  ADD KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  ADD KEY `comment_date_gmt` (`comment_date_gmt`),
  ADD KEY `comment_parent` (`comment_parent`),
  ADD KEY `comment_author_email` (`comment_author_email`(10));

--
-- Indexes for table `wps_e_events`
--
ALTER TABLE `wps_e_events`
  ADD PRIMARY KEY (`id`),
  ADD KEY `created_at_index` (`created_at`);

--
-- Indexes for table `wps_e_notes`
--
ALTER TABLE `wps_e_notes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `route_url_index` (`route_url`(191)),
  ADD KEY `post_id_index` (`post_id`),
  ADD KEY `element_id_index` (`element_id`),
  ADD KEY `parent_id_index` (`parent_id`),
  ADD KEY `author_id_index` (`author_id`),
  ADD KEY `status_index` (`status`),
  ADD KEY `is_resolved_index` (`is_resolved`),
  ADD KEY `is_public_index` (`is_public`),
  ADD KEY `created_at_index` (`created_at`),
  ADD KEY `updated_at_index` (`updated_at`),
  ADD KEY `last_activity_at_index` (`last_activity_at`);

--
-- Indexes for table `wps_e_notes_users_relations`
--
ALTER TABLE `wps_e_notes_users_relations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `type_index` (`type`),
  ADD KEY `note_id_index` (`note_id`),
  ADD KEY `user_id_index` (`user_id`);

--
-- Indexes for table `wps_e_submissions`
--
ALTER TABLE `wps_e_submissions`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `hash_id_unique_index` (`hash_id`),
  ADD KEY `main_meta_id_index` (`main_meta_id`),
  ADD KEY `hash_id_index` (`hash_id`),
  ADD KEY `type_index` (`type`),
  ADD KEY `post_id_index` (`post_id`),
  ADD KEY `element_id_index` (`element_id`),
  ADD KEY `campaign_id_index` (`campaign_id`),
  ADD KEY `user_id_index` (`user_id`),
  ADD KEY `user_ip_index` (`user_ip`),
  ADD KEY `status_index` (`status`),
  ADD KEY `is_read_index` (`is_read`),
  ADD KEY `created_at_gmt_index` (`created_at_gmt`),
  ADD KEY `updated_at_gmt_index` (`updated_at_gmt`),
  ADD KEY `created_at_index` (`created_at`),
  ADD KEY `updated_at_index` (`updated_at`),
  ADD KEY `referer_index` (`referer`(191)),
  ADD KEY `referer_title_index` (`referer_title`(191));

--
-- Indexes for table `wps_e_submissions_actions_log`
--
ALTER TABLE `wps_e_submissions_actions_log`
  ADD PRIMARY KEY (`id`),
  ADD KEY `submission_id_index` (`submission_id`),
  ADD KEY `action_name_index` (`action_name`),
  ADD KEY `status_index` (`status`),
  ADD KEY `created_at_gmt_index` (`created_at_gmt`),
  ADD KEY `updated_at_gmt_index` (`updated_at_gmt`),
  ADD KEY `created_at_index` (`created_at`),
  ADD KEY `updated_at_index` (`updated_at`);

--
-- Indexes for table `wps_e_submissions_values`
--
ALTER TABLE `wps_e_submissions_values`
  ADD PRIMARY KEY (`id`),
  ADD KEY `submission_id_index` (`submission_id`),
  ADD KEY `key_index` (`key`);

--
-- Indexes for table `wps_links`
--
ALTER TABLE `wps_links`
  ADD PRIMARY KEY (`link_id`),
  ADD KEY `link_visible` (`link_visible`);

--
-- Indexes for table `wps_litespeed_url`
--
ALTER TABLE `wps_litespeed_url`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `url` (`url`(191)),
  ADD KEY `cache_tags` (`cache_tags`(191));

--
-- Indexes for table `wps_litespeed_url_file`
--
ALTER TABLE `wps_litespeed_url_file`
  ADD PRIMARY KEY (`id`),
  ADD KEY `filename` (`filename`),
  ADD KEY `type` (`type`),
  ADD KEY `url_id_2` (`url_id`,`vary`,`type`),
  ADD KEY `filename_2` (`filename`,`expired`),
  ADD KEY `url_id` (`url_id`,`expired`);

--
-- Indexes for table `wps_options`
--
ALTER TABLE `wps_options`
  ADD PRIMARY KEY (`option_id`),
  ADD UNIQUE KEY `option_name` (`option_name`),
  ADD KEY `autoload` (`autoload`);

--
-- Indexes for table `wps_postmeta`
--
ALTER TABLE `wps_postmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `post_id` (`post_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wps_posts`
--
ALTER TABLE `wps_posts`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `post_name` (`post_name`(191)),
  ADD KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  ADD KEY `post_parent` (`post_parent`),
  ADD KEY `post_author` (`post_author`),
  ADD KEY `type_status_author` (`post_type`,`post_status`,`post_author`);

--
-- Indexes for table `wps_termmeta`
--
ALTER TABLE `wps_termmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `term_id` (`term_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wps_terms`
--
ALTER TABLE `wps_terms`
  ADD PRIMARY KEY (`term_id`),
  ADD KEY `slug` (`slug`(191)),
  ADD KEY `name` (`name`(191));

--
-- Indexes for table `wps_term_relationships`
--
ALTER TABLE `wps_term_relationships`
  ADD PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  ADD KEY `term_taxonomy_id` (`term_taxonomy_id`);

--
-- Indexes for table `wps_term_taxonomy`
--
ALTER TABLE `wps_term_taxonomy`
  ADD PRIMARY KEY (`term_taxonomy_id`),
  ADD UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  ADD KEY `taxonomy` (`taxonomy`);

--
-- Indexes for table `wps_usermeta`
--
ALTER TABLE `wps_usermeta`
  ADD PRIMARY KEY (`umeta_id`),
  ADD KEY `user_id` (`user_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wps_users`
--
ALTER TABLE `wps_users`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `user_login_key` (`user_login`),
  ADD KEY `user_nicename` (`user_nicename`),
  ADD KEY `user_email` (`user_email`);

--
-- Indexes for table `wps_wt_iew_action_history`
--
ALTER TABLE `wps_wt_iew_action_history`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `wps_wt_iew_mapping_template`
--
ALTER TABLE `wps_wt_iew_mapping_template`
  ADD PRIMARY KEY (`id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `wps_commentmeta`
--
ALTER TABLE `wps_commentmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wps_comments`
--
ALTER TABLE `wps_comments`
  MODIFY `comment_ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wps_e_events`
--
ALTER TABLE `wps_e_events`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wps_e_notes`
--
ALTER TABLE `wps_e_notes`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wps_e_notes_users_relations`
--
ALTER TABLE `wps_e_notes_users_relations`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wps_e_submissions`
--
ALTER TABLE `wps_e_submissions`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `wps_e_submissions_actions_log`
--
ALTER TABLE `wps_e_submissions_actions_log`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `wps_e_submissions_values`
--
ALTER TABLE `wps_e_submissions_values`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `wps_links`
--
ALTER TABLE `wps_links`
  MODIFY `link_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wps_litespeed_url`
--
ALTER TABLE `wps_litespeed_url`
  MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wps_litespeed_url_file`
--
ALTER TABLE `wps_litespeed_url_file`
  MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wps_options`
--
ALTER TABLE `wps_options`
  MODIFY `option_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3941;

--
-- AUTO_INCREMENT for table `wps_postmeta`
--
ALTER TABLE `wps_postmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9017;

--
-- AUTO_INCREMENT for table `wps_posts`
--
ALTER TABLE `wps_posts`
  MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=933;

--
-- AUTO_INCREMENT for table `wps_termmeta`
--
ALTER TABLE `wps_termmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wps_terms`
--
ALTER TABLE `wps_terms`
  MODIFY `term_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `wps_term_taxonomy`
--
ALTER TABLE `wps_term_taxonomy`
  MODIFY `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `wps_usermeta`
--
ALTER TABLE `wps_usermeta`
  MODIFY `umeta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=74;

--
-- AUTO_INCREMENT for table `wps_users`
--
ALTER TABLE `wps_users`
  MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `wps_wt_iew_action_history`
--
ALTER TABLE `wps_wt_iew_action_history`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wps_wt_iew_mapping_template`
--
ALTER TABLE `wps_wt_iew_mapping_template`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
